/*
Theme Name: StratEvent
Theme URI: https://strateventgroup.com
Author: StratEvent Group
Author URI: https://strateventgroup.com
Description: Bold, dark, neon-green marketing theme for StratEvent Group — Strategic Event Partners. Built from the StratEvent 2026 deck: monetize your brand, engage your audience, leave a lasting impact. Self-scaffolding (auto-creates pages + menu on activation). For local testing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
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: stratevent
*/

/* ============================================================
   StratEvent — Design tokens
   A riff on the deck's "neon green on black" scheme:
   slightly cleaner green, a lime secondary for gradients,
   green-tinted ink + hairlines, soft neon glow.
   ============================================================ */
:root {
  --bg:         #060a07;     /* page background, near-black with a green whisper */
  --bg-2:       #08100a;
  --surface:    #0f1a12;     /* cards */
  --surface-2:  #14241a;
  --surface-3:  #1b3122;
  --line:       rgba(118, 224, 142, 0.14);
  --line-2:     rgba(118, 224, 142, 0.28);
  --green:      #36d85b;     /* primary neon accent */
  --green-2:    #5bf07f;     /* bright / hover */
  --green-deep: #178a37;
  --lime:       #a6ee5c;     /* riff: secondary lime for gradients */
  --text:       #f2f8f3;
  --text-soft:  #cdd8cf;
  --muted:      #93a597;
  --glow:       0 0 0 1px var(--line-2), 0 18px 60px -20px rgba(54, 216, 91, 0.35);
  --glow-soft:  0 16px 50px -24px rgba(54, 216, 91, 0.22);
  --maxw:       1180px;
  --radius:     16px;
  --radius-lg:  22px;
  --ease:       cubic-bezier(.22,.61,.36,1);
  --font-head:  "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
/* keep anchored sections clear of the sticky header */
section[id], [id].section { scroll-margin-top: 88px; }
.admin-bar section[id], .admin-bar [id].section { scroll-margin-top: 120px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle ambient glow + deck-style grid texture behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(54, 216, 91, 0.16), transparent 60%),
    radial-gradient(760px 520px at -6% 12%, rgba(166, 238, 92, 0.08), transparent 55%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(118, 224, 142, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 224, 142, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 75%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--lime); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--text-soft); }

::selection { background: var(--green); color: #04140a; }

:focus-visible { outline: 2px solid var(--green-2); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }
.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }

/* Photo-backed sections — event imagery from the deck behind a dark,
   green-tinted gradient so copy stays legible. Image URL is supplied
   per-section via the --sec-bg custom property (see sections.php). */
.section--bg { overflow: hidden; }
.section--bg > .container { position: relative; z-index: 1; }
.section--bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(6,10,7,.94) 0%, rgba(6,10,7,.74) 46%, rgba(6,10,7,.95) 100%),
    var(--sec-bg) center/cover no-repeat;
}
/* faint green wash to tie photos to the brand palette */
.section--bg::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(54,216,91,.10), transparent 60%);
}

/* deck-signature hashmark motif  ///// */
.hashes { display: inline-flex; gap: 5px; height: 16px; align-items: center; }
.hashes i {
  display: block; width: 5px; height: 16px;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  transform: skewX(-22deg);
  border-radius: 1px;
  opacity: .9;
}
.hashes--fade i:nth-child(4) { opacity: .55; }
.hashes--fade i:nth-child(5) { opacity: .3; }

/* eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--green), transparent); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-head p { font-size: 1.08rem; color: var(--muted); margin-top: 6px; }

.accent { color: transparent; background: linear-gradient(100deg, var(--lime), var(--green-2)); -webkit-background-clip: text; background-clip: text; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  color: #04140a;
  background: linear-gradient(100deg, var(--lime), var(--green));
  box-shadow: 0 10px 30px -10px rgba(54, 216, 91, .6);
}
.btn--primary:hover { transform: translateY(-2px); color: #04140a; box-shadow: 0 16px 40px -10px rgba(91, 240, 127, .7); }
.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.02);
  border-color: var(--line-2);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--green); color: var(--green-2); background: rgba(54,216,91,.06); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(6, 10, 7, .94);
  border-bottom: 1px solid var(--line);
}
/* Don't let the WP admin bar (shown when logged in) clip the sticky header. */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__logo { display: block; height: 40px; width: auto; max-width: 220px; }
.brand__name { font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em; line-height: 1; font-size: 1.18rem; }
.brand__name small { display: block; font-size: .62rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--green-2); margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  position: relative; display: block; color: var(--text-soft);
  font-size: .94rem; font-weight: 500; padding: 9px 14px; border-radius: 10px;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); border-radius: 2px;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after { transform: scaleX(1); }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--green-2); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px;
  background: transparent; cursor: pointer; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-block: clamp(64px, 11vw, 132px); overflow: hidden; }
.hero__inner { max-width: 880px; position: relative; z-index: 1; }
/* Hero photo (concert crowd from the deck), darkened so the headline pops
   and fading into the page background at the bottom. */
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(6,10,7,.74) 0%, rgba(6,10,7,.6) 30%, rgba(6,10,7,.92) 78%, var(--bg) 100%),
    var(--hero-bg) center/cover no-repeat;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -.03em;
  margin: 18px 0 18px;
}
.hero__lead { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-soft); max-width: 620px; margin-bottom: 14px; }
.hero__sub { color: var(--muted); max-width: 600px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__glow {
  position: absolute; right: -10%; top: 6%; width: 620px; height: 620px; z-index: -1;
  background: radial-gradient(circle, rgba(54,216,91,.30), transparent 62%);
  filter: blur(8px);
}

/* stat strip under hero */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: clamp(40px, 6vw, 64px);
}
.stat { background: linear-gradient(180deg, rgba(15,26,18,.9), rgba(8,16,10,.9)); padding: 26px 22px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: .9rem; }
.stat b .accent { font-size: inherit; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, var(--green), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--glow-soft); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(54,216,91,.22), rgba(54,216,91,.05));
  border: 1px solid var(--line-2); color: var(--green-2);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card__num {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .1em;
  color: var(--green); opacity: .8; margin-bottom: 14px; display: block;
}

/* ============================================================
   Check lists (what we do / venues / production)
   ============================================================ */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks.grid--2 { grid-template-columns: repeat(2, 1fr); }
.checks li {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.checks li:hover { border-color: var(--line-2); transform: translateX(4px); }
.checks .tick {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; margin-top: 1px;
  background: linear-gradient(140deg, var(--green), var(--green-deep)); color: #04140a;
  box-shadow: 0 6px 16px -6px rgba(54,216,91,.6);
}
.checks .tick svg { width: 15px; height: 15px; }
.checks li b { color: var(--text); font-weight: 600; }
.checks li span { color: var(--muted); }
.checks li .ctext { display: block; }
.checks li .ctext b + span { display: block; margin-top: 2px; font-size: .96rem; }

/* large lead/closing line used on several slides */
.lede { font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-family: var(--font-head); font-weight: 500; color: var(--text); letter-spacing: -.01em; line-height: 1.3; }
.closing {
  margin-top: clamp(28px, 4vw, 44px); text-align: center; font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600; color: var(--text); letter-spacing: -.01em;
  padding: 26px; border: 1px dashed var(--line-2); border-radius: var(--radius); background: rgba(54,216,91,.04);
}
.closing .accent { font-weight: 700; }

/* ============================================================
   Pricing
   ============================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  position: relative; background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--glow-soft); }
.tier--featured { border-color: var(--line-2); box-shadow: var(--glow-soft); }
.tier__tag {
  position: absolute; top: 18px; right: 18px; font-family: var(--font-head); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: #04140a; background: linear-gradient(100deg, var(--lime), var(--green)); padding: 5px 11px; border-radius: 999px; font-weight: 700;
}
.tier h3 { font-size: 1.4rem; margin-bottom: 6px; }
.tier .tier__kind { font-family: var(--font-head); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-2); margin-bottom: 18px; }
.tier p { color: var(--muted); margin-bottom: 22px; flex: 1; }
.tier .hashes { margin-bottom: 16px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.contact-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--glow-soft);
}
.contact-methods { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.contact-methods a, .contact-methods span.cm {
  display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02); color: var(--text);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact-methods a:hover { border-color: var(--green); transform: translateX(4px); color: var(--text); }
.contact-methods .cm-ico { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; color: var(--green-2); background: radial-gradient(120% 120% at 30% 20%, rgba(54,216,91,.22), rgba(54,216,91,.05)); border: 1px solid var(--line-2); }
.contact-methods .cm-ico svg { width: 19px; height: 19px; }
.contact-methods small { display: block; color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-methods b { font-weight: 600; }

/* simple form (test only — no backend) */
.cform { display: grid; gap: 14px; }
.cform label { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.cform input, .cform textarea {
  width: 100%; font: inherit; color: var(--text); background: rgba(255,255,255,.02);
  border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px; transition: border-color .2s var(--ease);
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--green); }
.cform .field { display: grid; gap: 7px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform .note { color: var(--muted); font-size: .82rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(54,216,91,.20), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--bg-2));
  padding: clamp(34px, 6vw, 64px);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--text-soft); max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero__actions { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); margin-top: 20px; padding-block: 54px 36px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 38px; }
.footer-grid p { color: var(--muted); font-size: .96rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-head); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--green-2); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: var(--text-soft); font-size: .96rem; }
.footer-col a:hover { color: var(--green-2); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: .86rem; }

/* ============================================================
   Generic page (page.php fallback content)
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.8rem; margin-top: 1.4em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.2em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { color: var(--text-soft); padding-left: 1.2em; }
.prose img { border-radius: var(--radius); margin: 1.2em 0; }
.page-hero { padding-block: clamp(46px, 7vw, 84px) clamp(20px, 3vw, 32px); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }

/* ============================================================
   Scroll-reveal (progressive enhancement)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(6,10,7,.98); border-bottom: 1px solid var(--line); padding: 14px clamp(18px,4vw,36px) 22px;
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
  }
  body.nav-open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 12px 6px; font-size: 1.02rem; }
  .nav-menu a::after { display: none; }
  .nav-cta .btn--book { display: none; }
}
@media (max-width: 560px) {
  .grid--4, .grid--3, .grid--2, .checks.grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .cform .row { grid-template-columns: 1fr; }
  .brand__name small { letter-spacing: .2em; }
}


/* ============================================================
   Contact form — Resend endpoint status + spam honeypot
   ============================================================ */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cform-status { margin: 4px 0 0; min-height: 1.25em; font-size: .92rem; }
.cform-status--ok { color: var(--green-2); }
.cform-status--err { color: #ff9c9c; }
.cform button[disabled] { opacity: .6; cursor: progress; transform: none; }
