/**handles:jvn-core**/
/*!
 * JVN Core - front-end stylesheet
 * Part of the JVN Workshops plugin. Enqueued by JVNW_Assets.
 *
 * ---------------------------------------------------------------------------
 * WHY THIS FILE EXISTS, 1.8.2
 * ---------------------------------------------------------------------------
 * Until 1.8.2 every rule below was returned as a <style> block from the
 * function that drew the markup it styled, and so was printed inside <body>,
 * once per form. Measured on the live site, 1 August 2026:
 *
 *     11,806 B   the opt-in block          printed once PER FORM
 *      2,209 B   the popup block
 *        759 B   the consent bar block
 *     10,468 B   the workshop form block
 *
 * On /contact/, which draws three opt-in forms, that came to 38,386 B of
 * inline CSS, 23,612 B of which was the same block repeated. Brotli
 * compresses the repetition almost perfectly - printing the block once per
 * page rather than once per form would have saved 27 bytes on /contact/ - so
 * de-duplication was never the point and is not claimed as a benefit here.
 * The point is that a stylesheet is fetched once and then cached for the
 * whole site, while an inline block is re-sent with every document. Removing
 * it from the HTML measured:
 *
 *     home     brotli 80,603 -> 76,644   -3,959 B  (4.9% of the document)
 *     post     brotli 71,000 -> 66,930   -4,070 B  (5.7%)
 *     contact  brotli 49,040 -> 44,962   -4,078 B  (8.3%)
 *
 * ---------------------------------------------------------------------------
 * IT IS ENQUEUED SITEWIDE AND UNCONDITIONALLY. THIS IS DELIBERATE.
 * ---------------------------------------------------------------------------
 * JVNW_Optin::css() used to carry a docblock arguing the opposite: that a
 * wp_enqueue_style() needs a hook, the hook needs to know whether the page has
 * a form on it, and the only cheap test - has_shortcode( $post->post_content )
 * - is false for every one of these forms, because they live in the footer, in
 * popups and in page-builder blocks rather than in post content. That argument
 * was correct about the mechanism and is answered by not attempting it. There
 * is no condition. The handle is registered on every page.
 *
 * The reason is Hummingbird. Asset Optimization combines stylesheets into a
 * bundle keyed by the set of handles on the page, so a conditional enqueue
 * produces a different bundle per page type. This site has lost CSS combining
 * twice from bundle churn. A uniform handle set is worth more than the ~4 KB
 * saved by omitting this file from a page that has no form on it.
 *
 * AFTER CHANGING THIS FILE OR ITS VERSION: re-scan Site Files in Hummingbird's
 * Asset Optimization, or posts will serve 25-30 uncombined stylesheets.
 *
 * ---------------------------------------------------------------------------
 * ORDER WITHIN THIS FILE IS LOAD-BEARING. DO NOT SORT IT.
 * ---------------------------------------------------------------------------
 * Two orderings matter and both are easy to destroy with a tidy-up:
 *
 * 1. THE OPT-IN SECTION COMES LAST. The workshop-form section carries bare
 *    .jvnw-form, .jvnw-check and .jvnw-note rules, and opt-in markup uses the
 *    same classes. Several pairs tie on specificity - .jvnw-form label and
 *    .jvnw-optin label are both (0,1,1) - so source order is what decides
 *    them, and the opt-in rule has to win. This is not a new arrangement: on
 *    any workshop page the footer newsletter form already resolved this way,
 *    because the workshop block was printed in the content and the opt-in
 *    block in the footer after it. The file reproduces the cascade that has
 *    been in production since 1.6.x rather than inventing one.
 *
 * 2. INSIDE THE OPT-IN SECTION, the .light / .jvnw-text-light override of
 *    .jvnw-note opacity must stay after the plain .jvnw-note rule it
 *    overrides. It is a same-specificity override and nothing but order
 *    carries it.
 *
 * ---------------------------------------------------------------------------
 * THIS FILE NOW LOSES TO ANY STYLESHEET PRINTED AFTER IT.
 * ---------------------------------------------------------------------------
 * As inline <body> blocks these rules were the last CSS in the document and
 * won every tie by default. They no longer are. JVNW_Assets enqueues at
 * priority 100 on wp_enqueue_scripts so the file still prints after the
 * theme's stylesheets, but that is a convention, not a guarantee. Every rule
 * here that has to beat the theme does so on specificity or !important, which
 * is why the selectors are as long as they are. Do not shorten one on the
 * grounds that it "obviously" wins.
 *
 * The one that concretely changed hands is worth naming. The JVN Performance
 * plugin prints <style id="jvn-extra-css"> at wp_head priority 102 - measured
 * on /contact/, 2 August 2026, 12,961 B. It carries one enormous grouped
 * selector whose members include, character for character:
 *
 *     .jvnw-optin .jvnw-form p.jvnw-submit button.jvnw-btn:not(.jvnw-btn-theme)
 *     .jvnw-pop-cta a.jvnw-btn
 *     .jvnw-pop-sub
 *
 * declaring font-family:"Open Sans","Open Sans Caps Fallback",sans-serif
 * !important. A grouped selector's specificity is computed per member, so the
 * first of those is (0,5,2) - a dead tie with the opt-in rule in section 4,
 * both !important. This file prints from wp_print_styles, long before priority
 * 102, so from 1.8.2 the Performance rule wins that tie on order. Before 1.8.2
 * the opt-in block was in <body>, after it, and won - which is exactly why the
 * contact form's submit button was the only uppercase element on the site
 * still drawn with lowercase-tuned metrics.
 *
 * The tie has also been removed outright: section 4's rule no longer declares
 * font-family at all. Both halves were done deliberately, so the outcome does
 * not depend on which stylesheet lands second. font-family was the ONLY
 * property those two rules had in common - checked declaration by declaration
 * against the live block, not assumed - so nothing else changed hands.
 */#jvnw-consent{position:fixed;left:0;right:0;bottom:0;z-index:9998;background:#000;color:#fff;font-size:14px;line-height:1.5;padding:12px 16px;box-sizing:border-box}#jvnw-consent .jvnw-consent-in{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;max-width:1100px;margin:0 auto}#jvnw-consent .jvnw-consent-msg{flex:1 1 320px}#jvnw-consent a{color:#fff;text-decoration:underline}#jvnw-consent .jvnw-consent-x{flex:0 0 auto;background:#fff;color:#000;border:0;border-radius:5px;padding:8px 18px;font-size:14px;line-height:1.2;cursor:pointer;font-family:inherit}#jvnw-consent .jvnw-consent-x:focus-visible{outline:2px solid #fff;outline-offset:2px}#jvnw-consent img{position:absolute;width:1px;height:1px;opacity:0;pointer-events:none}.jvnw-pop[hidden]{display:none}html.jvnw-pop-lock{overflow:hidden;padding-right:var(--jvnw-pop-gut,0)}.jvnw-pop{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:20px}.jvnw-pop-bg{position:absolute;inset:0;background:rgba(0,0,0,.72)}.jvnw-pop-box{position:relative;background:#fff;color:#222;max-width:860px;width:100%;max-height:90vh;overflow:auto;border-radius:4px;display:flex;flex-wrap:wrap}.jvnw-pop-x{position:absolute;top:6px;right:10px;z-index:2;background:0 0;border:0;font-size:30px;line-height:1;cursor:pointer;color:#666;padding:4px 8px}.jvnw-pop-x:hover{color:#000}.jvnw-pop-img{flex:0 0 40%;min-width:220px}.jvnw-pop-img img{display:block;width:100%;height:100%;object-fit:cover}.jvnw-pop-txt{flex:1 1 320px;padding:32px 30px}.jvnw-pop-sub{margin:0 0 6px;text-transform:uppercase;letter-spacing:.08em;font-size:12px;font-weight:700;color:#888}.jvnw-pop-h{margin:0 0 14px;font-size:24px;line-height:1.25}.jvnw-pop-body p{margin:0 0 12px;font-size:15px;line-height:1.55}.jvnw-pop-cta{margin:16px 0 0}.jvnw-pop-cta a.jvnw-btn{display:inline-block;background:#000;color:#fff;border:0;border-radius:200px;padding:15px 35px;font-size:14px;line-height:20px;font-weight:600;font-family:inherit;text-transform:uppercase;letter-spacing:normal;text-decoration:none;text-align:center;cursor:pointer}.jvnw-pop-cta a.jvnw-btn:focus,.jvnw-pop-cta a.jvnw-btn:hover{background:#222;color:#fff;text-decoration:none}.jvnw-pop-never{margin:14px 0 0}.jvnw-pop-never a{font-size:12px;color:#999;text-decoration:underline}.jvnw-pop-whole{cursor:pointer}.jvnw-pop-preview{flex:0 0 100%;margin:0;padding:9px 42px 9px 14px;background:#fcf0e4;border-bottom:1px solid #dba617;font-size:12px;line-height:1.4;color:#3c434a;text-align:center}@media(max-width:640px){.jvnw-pop-img{flex-basis:100%;max-height:180px}.jvnw-pop-txt{padding:24px 20px}.jvnw-pop-h{font-size:20px}.jvnw-pop-body,.jvnw-pop-cta,.jvnw-pop-h,.jvnw-pop-never,.jvnw-pop-sub{text-align:center}.jvnw-pop-form .jvnw-banner,.jvnw-pop-form .jvnw-note,.jvnw-pop-form .jvnw-submit,.jvnw-pop-form label,.jvnw-pop-form legend{text-align:center}.jvnw-pop-form .jvnw-check{justify-content:center;text-align:center}}:root{--jvn-text-muted:#767676}.jvnw-form-wrap{max-width:none}.jvnw-form-wrap .jvnw-title{font-size:30px;font-weight:600;color:#333;margin:0 0 14px}.jvnw-form-head{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin:0 0 14px}.jvnw-form-head .jvnw-title{margin:0}.jvnw-form-head .jvnw-avail-chip{margin:0}.jvnw-hold-claim{margin-top:18px;border-top:1px solid #e6e6e6;padding-top:14px}.jvnw-hold-claim summary{cursor:pointer;font-weight:600;color:#333;font-size:15px}.jvnw-hold-claim summary:hover{color:#000}.jvnw-hold-claim>details>.jvnw-note{margin:10px 0 0}.jvnw-hold-claim .jvnw-title{font-size:22px}.jvnw-avail-chip{display:inline-block;padding:5px 14px;border-radius:99px;font-size:13px;font-weight:700;letter-spacing:.02em;margin:0 0 20px}.jvnw-avail-chip.ok{background:#edfaef;color:#00801c}.jvnw-avail-chip.few{background:#fcf9e8;color:#996800}.jvnw-avail-note{font-size:13px;color:#996800;margin:0 0 16px;font-weight:600}@media(max-width:600px){.jvnw-form-head{flex-direction:column;align-items:flex-start;gap:8px}}.jvnw-form p{margin:0 0 20px}.jvnw-form label{display:block;font-weight:400;font-size:14px;color:#333;margin-bottom:7px}.jvnw-form fieldset{border:0;margin:0;padding:0;min-width:0}.jvnw-form legend{display:block;padding:0;width:100%;max-width:100%;float:none}.jvnw-form legend.jvnw-grouplabel{font-weight:400;font-size:14px;color:#333;margin-bottom:7px}.jvnw-sr{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}.jvnw-status:empty{display:none}.jvnw-fielderr{display:block;margin-top:6px;padding:8px 11px;border-radius:4px;background:#fdeeee;color:#a00;font-size:13px;line-height:1.45;font-weight:400}.jvnw-fielderr:empty{display:none;padding:0;margin:0}.jvnw-form [aria-invalid=true]{border-color:#a3231d}.jvnw-form input[type=email],.jvnw-form input[type=tel],.jvnw-form input[type=text],.jvnw-form select,.jvnw-form textarea{width:100%;padding:11px 12px;border:2px solid transparent;border-radius:4px;font-size:14px;box-sizing:border-box;background:rgba(0,0,0,.04);color:#555;font-family:inherit;line-height:1.5;-webkit-appearance:none;appearance:none}.jvnw-form select{background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2010%206%27%3E%3Cpath%20fill%3D%27%23555%27%20d%3D%27M0%200l5%206%205-6z%27%2F%3E%3C%2Fsvg%3E");background-repeat:no-repeat;background-position:right 14px center;background-size:10px;padding-right:34px}.jvnw-form textarea{min-height:120px;line-height:1.5}.jvnw-form input:focus,.jvnw-form select:focus,.jvnw-form textarea:focus{outline:0;border-color:#333;background:#fff}.jvnw-hint{font-size:13px;color:var(--jvn-text-muted,#767676);display:block;margin-top:6px;font-weight:400}.jvnw-form .jvnw-rooming{margin:0 0 20px}.jvnw-form .jvnw-rooming>p{margin:0 0 6px}.jvnw-form .jvnw-rooming>p.jvnw-hint{margin:6px 0 0}.jvnw-form .jvnw-rooming>p:last-child{margin-bottom:0}.jvnw-form .jvnw-extra-people{margin:0 0 20px}.jvnw-form .jvnw-extra-people>p:last-child{margin-bottom:0}.jvnw-form .jvnw-extra-person>p:last-child{margin-bottom:0}.jvnw-form .jvnw-extra-person>legend{font-size:14px;color:#333}.jvnw-phone-row{display:flex;gap:8px}.jvnw-cc{flex:0 0 44%;max-width:240px}.jvnw-phone{flex:1}.jvnw-req{color:#b32d2e}.jvnw-check label{font-weight:400;display:inline;font-size:14px;color:#555}.jvnw-check input{margin-right:8px}.jvnw-form .jvnw-interests{margin:0 0 20px}.jvnw-form .jvnw-interests-legend{display:block;font-size:14px;color:#333;margin-bottom:12px}.jvnw-optnote{color:var(--jvn-text-muted,#767676);font-weight:400}.jvnw-form .jvnw-interest-group{margin:0 0 12px}.jvnw-form .jvnw-interest-grouplabel{display:block;font-size:13px;color:var(--jvn-text-muted,#767676);font-weight:400;margin-bottom:7px}.jvnw-form .jvnw-interest-opts{display:flex;flex-wrap:wrap;gap:8px}.jvnw-form .jvnw-interest{display:inline-flex;align-items:center;margin:0;padding:7px 13px;border:1px solid rgba(0,0,0,.15);border-radius:99px;font-size:14px;color:#444;cursor:pointer;background:#fff;line-height:1.2}.jvnw-form .jvnw-interest input{margin:0 7px 0 0;flex:0 0 auto;width:auto;vertical-align:middle}.jvnw-form .jvnw-interest:has(input:checked){border-color:#333;background:#fff;color:#222;font-weight:600}.jvnw-form .jvnw-interest-locked{cursor:default}.jvnw-form .jvnw-interests .jvnw-interest-allbox{position:absolute;opacity:0;width:1px;height:1px;margin:0}.jvnw-form .jvnw-interest-all{margin:0 0 12px}.jvnw-form .jvnw-interest-all::before{content:"";flex:0 0 auto;width:14px;height:14px;margin:0 7px 0 0;border:1px solid rgba(0,0,0,.45);border-radius:3px;background:#fff}.jvnw-form .jvnw-interest-allbox:checked+.jvnw-interest-all{border-color:#333;color:#222;font-weight:600}.jvnw-form .jvnw-interest-allbox:checked+.jvnw-interest-all::before{background:#333;border-color:#333}.jvnw-form .jvnw-interest-allbox:focus-visible+.jvnw-interest-all{outline:2px solid #333;outline-offset:2px}.jvnw-form .jvnw-interests .jvnw-interest-allnote{display:none;font-size:13px;margin:0 0 12px}.jvnw-form .jvnw-interest-allbox:checked~.jvnw-interest-allnote{display:block}.jvnw-form .jvnw-interest-allbox:checked~.jvnw-interest-rest{display:none}.jvnw-note{font-size:13px;color:var(--jvn-text-muted,#767676);margin:0 0 20px}.jvnw-hp{display:none!important}.jvnw-disclaimer{color:#555;font-size:15px;margin:0 0 24px;line-height:1.6}.jvnw-disclaimer p{margin:0 0 10px}.jvnw-form-wrap .jvnw-form p.jvnw-submit button.jvnw-btn{display:block!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;background:#000!important;color:#fff!important;border:0!important;border-radius:200px!important;padding:15px 35px!important;font-size:14px!important;line-height:20px!important;font-weight:600!important;font-family:inherit!important;text-transform:uppercase!important;letter-spacing:normal!important;cursor:pointer!important;text-align:center!important;margin:14px 0 0!important;min-width:0!important;height:auto!important;-webkit-appearance:none!important;appearance:none!important}.jvnw-form-wrap .jvnw-form p.jvnw-submit button.jvnw-btn:hover{background:#222!important;color:#fff!important}.jvnw-form p.jvnw-submit{text-align:center;margin-top:8px}.jvnw-form .jvnw-roomopt{display:block;font-weight:400;font-size:14px;color:var(--jvn-text-muted,#767676);margin:6px 0}.jvnw-form .jvnw-roomopt input{margin-right:8px}.jvnw-banner{padding:14px 18px;border-radius:6px;margin-bottom:18px}.jvnw-ok{background:#eef7ee;border:1px solid #9ac79a}.jvnw-err{background:#fdecea;border:1px solid #e2a49f}.jvnw-optin{max-width:none}.jvnw-optin .jvnw-form p{margin:0 0 16px;color:inherit}.light .jvnw-optin{color:var(--nectar-font-light-color,#fff)}.jvnw-optin.jvnw-text-light{color:#fff}.jvnw-optin.jvnw-text-dark{color:#333}.jvnw-optin label{display:block;font-weight:400;font-size:14px;color:inherit;margin-bottom:6px}.jvnw-optin input[type=email],.jvnw-optin input[type=tel],.jvnw-optin input[type=text]{width:100%;padding:11px 13px;border:1px solid #d5d5d5;border-radius:4px;font-size:15px;background:#fff;color:#333}.jvnw-optin input:focus{outline:2px solid #333;outline-offset:1px}.jvnw-optin fieldset{border:0;margin:0 0 16px;padding:0;min-width:0}.jvnw-optin legend{display:block;padding:0;width:100%;font-size:14px;color:inherit;margin-bottom:6px}.jvnw-optin .jvnw-check{display:flex;align-items:flex-start;gap:9px;font-size:14px;color:inherit;font-weight:400;margin:0}.jvnw-optin .jvnw-check input{margin-top:3px;flex:0 0 auto}.jvnw-optin fieldset .jvnw-check:only-of-type{display:inline-flex;max-width:100%;text-align:left}.jvnw-optin select,.jvnw-optin textarea{width:100%;padding:11px 13px;border:1px solid #d5d5d5;border-radius:4px;font-size:15px;background:#fff;color:#333;font-family:inherit}.jvnw-optin textarea{min-height:120px;resize:vertical}.jvnw-optin select:focus,.jvnw-optin textarea:focus{outline:2px solid #333;outline-offset:1px}.jvnw-optin .jvnw-extra-radio .jvnw-check{margin-bottom:8px}.jvnw-optin .jvnw-notice{font-size:14px;line-height:1.5;margin:0 0 16px;padding:14px 16px;border-radius:4px;background:#f4f4f4;color:#333}.jvnw-optin .jvnw-form .jvnw-notice p{margin:0}.jvnw-optin .jvnw-notice a{color:inherit;text-decoration:underline}.jvnw-optin [hidden]{display:none!important}.jvnw-optin .jvnw-form .jvnw-note{font-size:13px;color:inherit;opacity:.75;margin:18px 0 0}.jvnw-optin.jvnw-text-light .jvnw-form .jvnw-note,.light .jvnw-optin .jvnw-form .jvnw-note{opacity:.85}.jvnw-optin .jvnw-fielderr{display:block;margin-top:6px;padding:8px 11px;border-radius:4px;background:#fdeeee;color:#a00;font-size:13px;line-height:1.45;font-weight:400}.jvnw-optin .jvnw-fielderr:empty{display:none;padding:0;margin:0}.jvnw-optin [aria-invalid=true]{border-color:#a00}.jvnw-optin .jvnw-note a{color:inherit;text-decoration:underline}.jvnw-optin .jvnw-form .jvnw-submit{margin:0;text-align:center}.jvnw-optin .jvnw-btn{cursor:pointer}.jvnw-optin .jvnw-form p.jvnw-submit button.jvnw-btn:not(.jvnw-btn-theme){display:block!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;background:#000!important;color:#fff!important;border:0!important;border-radius:200px!important;padding:15px 35px!important;font-size:14px!important;line-height:20px!important;font-weight:600!important;text-transform:uppercase!important;letter-spacing:normal!important;cursor:pointer!important;text-align:center!important;margin:0!important;min-width:0!important;height:auto!important;-webkit-appearance:none!important;appearance:none!important}.jvnw-optin .jvnw-form p.jvnw-submit button.jvnw-btn:not(.jvnw-btn-theme):hover{background:#222!important;color:#fff!important}.jvnw-optin .jvnw-form p.jvnw-submit button.jvnw-btn-theme{display:block!important;width:100%!important;max-width:100%!important;box-sizing:border-box!important;border:1px solid rgba(255,255,255,.25)!important}.jvnw-optin .jvnw-form p.jvnw-submit button.jvnw-btn-theme:hover{border-color:rgba(255,255,255,.4)!important}.jvnw-optin .jvnw-banner{padding:14px 16px;border-radius:4px;margin:0 0 16px;font-size:15px;line-height:1.5}.jvnw-optin .jvnw-banner p{margin:0}.jvnw-optin .jvnw-banner.jvnw-ok{background:#edfaef;color:#00801c}.jvnw-optin .jvnw-banner.jvnw-err{background:#fdeeee;color:#a00}