:root {
    --navy: #102a43;
    --navy-deep: #0a1e30;
    --navy-soft: #1b4162;
    --teal: #177e78;
    --teal-dark: #11655f;
    --mint: #dff3ef;
    --aqua: #9fd8cf;
    --sand: #f6f2ea;
    --cream: #fbfaf7;
    --gold: #d5aa62;
    --ink: #152532;
    --muted: #60707c;
    --line: #dfe6e9;
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(15, 42, 67, .11);
    --shadow-soft: 0 12px 36px rgba(15, 42, 67, .08);
    --radius: 24px;
    --shell: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
button, input, textarea, select { font: inherit; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 92px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; padding: 10px 14px; background: var(--white); color: var(--navy); transform: translateY(-150%); border-radius: 8px; box-shadow: var(--shadow-soft); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; inset: 0 0 auto; height: 108px; z-index: 1000; transition: background .25s ease, box-shadow .25s ease, height .25s ease; }
.site-header.is-scrolled, body:not(.lexquis-front-page) .site-header { background: rgba(251,250,247,.94); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(15,42,67,.08); height: 92px; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px 12px 18px 12px; background: var(--teal); color: var(--white); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(23,126,120,.22); }
.brand-mark span { font-family: Georgia, serif; font-weight: 700; font-size: 26px; line-height: 1; transform: translateY(-1px); }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 22px; letter-spacing: -.02em; }
.brand-text small { color: var(--teal-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .22em; font-weight: 800; margin-top: 6px; }
.custom-logo { display: block; width: auto; height: auto; max-width: 330px; max-height: 86px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.nav-list, .primary-nav .menu { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
.nav-list a, .primary-nav .menu a { color: var(--navy); font-weight: 650; font-size: 14px; }
.nav-list a:hover, .primary-nav .menu a:hover { color: var(--teal); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto; border-radius: 5px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 22px; border-radius: 12px; background: var(--teal); color: var(--white); font-weight: 800; font-size: 14px; line-height: 1; border: 1px solid var(--teal); box-shadow: 0 10px 24px rgba(23,126,120,.18); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); }
.button svg, .text-link svg { width: 17px; height: 17px; }
.button-small { min-height: 42px; padding: 11px 17px; }
.button-light { background: var(--white); border-color: var(--white); color: var(--navy); box-shadow: none; }
.button-light:hover { background: var(--sand); border-color: var(--sand); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-dark); font-weight: 800; font-size: 14px; }
.text-link:hover svg { transform: translateX(3px); }
.text-link svg { transition: transform .2s ease; }
.text-link.dark { color: var(--navy); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: 12px; line-height: 1.3; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--mint); }
.eyebrow > span svg { width: 14px; height: 14px; }
.eyebrow.plain { margin-bottom: 16px; }
.eyebrow.light { color: var(--aqua); }

.hero { position: relative; min-height: 0; padding: 145px 0 62px; background: linear-gradient(135deg, #f9f8f4 0%, #f2f6f3 58%, #e7f3ef 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(23,126,120,.09) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, rgba(0,0,0,.4), transparent 55%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 66px; }
.hero-copy h1 { margin: 19px 0 23px; max-width: 680px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 5.3vw, 72px); line-height: .99; letter-spacing: -.045em; font-weight: 700; }
.hero-copy h1 em { display: block; color: var(--teal); font-style: normal; }
.hero-lede { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.hero-trust { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 25px; border-top: 1px solid rgba(15,42,67,.11); min-width: 305px; }
.trust-icon { width: 38px; height: 38px; display: grid; place-items: center; background: var(--navy); color: var(--white); border-radius: 50%; }
.trust-icon svg { width: 18px; height: 18px; stroke-width: 2.4; }
.hero-trust div:last-child { display: grid; line-height: 1.2; }
.hero-trust strong { color: var(--navy); font-size: 14px; }
.hero-trust span { color: var(--muted); font-size: 12px; margin-top: 4px; }
.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.finance-card { position: relative; width: min(100%, 480px); border-radius: 28px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 35px 80px rgba(15,42,67,.16); padding: 28px; overflow: hidden; }
.finance-card::after { content: ""; position: absolute; width: 170px; height: 170px; background: var(--mint); border-radius: 50%; top: -90px; right: -70px; filter: blur(2px); opacity: .8; }
.mini-label { position: relative; z-index: 2; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.chart-wrap { margin-top: 35px; }
.chart-line { position: relative; height: 185px; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0, transparent 42px, rgba(15,42,67,.06) 43px, transparent 44px); }
.chart-line svg { width: 100%; height: 100%; stroke: var(--teal); stroke-width: 4; overflow: visible; }
.chart-line .chart-fill { fill: url(#none); stroke: none; opacity: .08; }
.chart-bars { height: 56px; display: grid; grid-template-columns: repeat(6,1fr); align-items: end; gap: 14px; margin-top: -2px; padding-inline: 8px; }
.chart-bars span { background: linear-gradient(to top, var(--navy), var(--teal)); border-radius: 5px 5px 0 0; opacity: .86; }
.chart-bars span:nth-child(1){height:28%}.chart-bars span:nth-child(2){height:46%}.chart-bars span:nth-child(3){height:38%}.chart-bars span:nth-child(4){height:70%}.chart-bars span:nth-child(5){height:61%}.chart-bars span:nth-child(6){height:88%}
.card-row { display: flex; gap: 24px; padding-top: 18px; color: var(--muted); }
.card-row > div { display: flex; align-items: center; gap: 7px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.dot-two { background: var(--gold); }
.float-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid rgba(15,42,67,.07); box-shadow: var(--shadow-soft); border-radius: 16px; padding: 14px 17px; line-height: 1.15; }
.float-card div { display: grid; }
.float-card small { color: var(--muted); font-size: 10px; }
.float-card strong { color: var(--navy); font-size: 12px; margin-top: 4px; }
.float-top { top: 35px; right: -4px; }
.float-bottom { bottom: 32px; left: -13px; }
.float-icon, .float-check { width: 35px; height: 35px; border-radius: 10px; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); }
.float-icon svg { width: 18px; height: 18px; }
.float-check { border-radius: 50%; background: var(--teal); color: var(--white); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 360px; height: 360px; right: -170px; top: 140px; border: 54px solid rgba(23,126,120,.07); }
.hero-orb-two { width: 150px; height: 150px; left: 43%; bottom: -80px; background: rgba(213,170,98,.11); }
.hero-bottom-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--teal) 0 34%, var(--gold) 34% 47%, var(--navy) 47% 100%); opacity: .85; }

.services-section { background: var(--white); padding-top: 46px; padding-bottom: 88px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 52px; }
.section-heading h2, .about-copy h2, .cert-card h2, .contact-band h2, .contact-form-card h2, .contact-sidebar h2 { margin: 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(35px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p { margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { position: relative; min-height: 300px; padding: 30px; border-radius: 20px; background: var(--cream); border: 1px solid rgba(15,42,67,.07); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(23,126,120,.18); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--mint); color: var(--teal-dark); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { max-width: 250px; margin: 24px 0 12px; color: var(--navy); font-size: 19px; line-height: 1.3; }
.service-card p { max-width: 285px; margin: 0; color: var(--muted); font-size: 14px; }
.service-number { position: absolute; right: 21px; bottom: 13px; color: rgba(15,42,67,.07); font-family: Georgia, serif; font-size: 54px; font-weight: 700; }

.cert-section { padding: 54px 0 34px; background: var(--white); }
.cert-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; padding: 32px 38px; border-radius: 22px; background: var(--navy); color: var(--white); overflow: hidden; }
.cert-card::before { content: ""; position: absolute; width: 260px; height: 260px; border: 40px solid rgba(159,216,207,.08); border-radius: 50%; right: 90px; top: -135px; }
.cert-badge { width: 62px; height: 62px; display: grid; place-items: center; background: var(--teal); border-radius: 50%; }
.cert-badge svg { width: 28px; height: 28px; stroke-width: 2.4; }
.cert-card .eyebrow { color: var(--aqua); }
.cert-card h2 { color: var(--white); font-size: 28px; }
.cert-card p { margin: 7px 0 0; color: #c6d5df; font-size: 14px; }
.cert-mark { position: relative; z-index: 2; width: 88px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); color: var(--aqua); font-weight: 900; letter-spacing: .12em; }

.about-section { background: var(--sand); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: center; }
.about-image-wrap { position: relative; max-width: 460px; }
.image-frame { position: relative; padding: 14px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.image-frame::before { content: ""; position: absolute; inset: -25px 50px 50px -28px; border: 2px solid rgba(23,126,120,.22); border-radius: 32px; z-index: -1; }
.image-frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 21px; }
.since-card { position: absolute; right: -34px; bottom: 33px; width: 126px; height: 106px; display: grid; place-content: center; text-align: center; background: var(--teal); color: var(--white); border-radius: 20px; box-shadow: 0 15px 35px rgba(23,126,120,.25); transform: rotate(2deg); }
.since-card strong { font-family: Georgia, serif; font-size: 30px; line-height: 1; }
.since-card span { margin-top: 5px; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-copy { max-width: 600px; }
.about-copy h2 { margin-bottom: 24px; }
.about-copy h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--navy); font-size: 16px; }
.about-copy h3 span { padding-left: 12px; border-left: 1px solid rgba(15,42,67,.18); color: var(--teal-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.about-copy p { color: var(--muted); font-size: 16px; }
.about-copy .text-link { margin-top: 10px; }

.contact-band { position: relative; padding: 82px 0; background: var(--teal-dark); color: var(--white); overflow: hidden; }
.contact-band::before { content: ""; position: absolute; width: 520px; height: 520px; border: 70px solid rgba(255,255,255,.045); border-radius: 50%; right: -190px; top: -210px; }
.contact-band-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 85px; align-items: center; }
.contact-band h2 { max-width: 660px; color: var(--white); margin-top: 13px; }
.contact-band p { max-width: 640px; color: #d3e6e2; margin: 20px 0 28px; font-size: 16px; }
.contact-details { display: grid; gap: 12px; }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.contact-detail-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--aqua); }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-details > * > span:last-child { display: grid; }
.contact-details small { color: #aad2cb; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-details strong { color: var(--white); font-size: 14px; margin-top: 2px; }

.site-footer { padding: 70px 0 25px; background: var(--navy-deep); color: #b7c5cf; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr .7fr; gap: 75px; }
.brand-footer .brand-text strong { color: var(--white); }
.brand-footer .brand-text small { color: var(--aqua); }
.footer-brand p { max-width: 330px; margin: 20px 0 0; font-size: 14px; color: #9fb0bc; }
.site-footer h2 { color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; margin: 7px 0 20px; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; font-size: 13px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact li > span:first-child { color: var(--aqua); display: grid; }
.footer-contact svg { width: 15px; height: 15px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 11px; color: #758997; }
.footer-credit { text-align: right; }
.footer-credit a { color: #9fb0bc; font-weight: 750; transition: color .2s ease; }
.footer-credit a:hover, .footer-credit a:focus-visible { color: var(--white); }

.page-hero { padding: 145px 0 72px; background: var(--navy); color: var(--white); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin: 8px 0 12px; color: var(--white); font-family: Georgia, serif; font-size: clamp(42px, 5vw, 62px); line-height: 1.05; letter-spacing: -.035em; }
.page-hero p { max-width: 650px; margin: 0; color: #c6d5df; font-size: 17px; }
.contact-page-section { background: var(--cream); }
.contact-page-focus { min-height: 72vh; padding: 142px 0 78px; }
.contact-focus-shell { display: flex; justify-content: center; }
.contact-form-card { padding: 42px; background: var(--white); border-radius: 24px; box-shadow: var(--shadow-soft); border: 1px solid rgba(15,42,67,.06); }
.contact-form-card-solo { width: min(100%, 880px); }
.contact-form-card h1 { margin: 0 0 16px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.contact-quick-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-quick-details > a, .contact-quick-details > div { display: flex; align-items: center; gap: 11px; min-width: 0; padding: 13px; border-radius: 13px; background: var(--sand); }
.contact-quick-details > * > span:first-child { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 10px; background: var(--mint); color: var(--teal-dark); }
.contact-quick-details svg { width: 17px; height: 17px; }
.contact-quick-details > * > span:last-child { min-width: 0; display: grid; }
.contact-quick-details small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; }
.contact-quick-details strong { margin-top: 2px; color: var(--navy); font-size: 12px; line-height: 1.35; overflow-wrap: anywhere; }
.content-shell { max-width: 850px; }
.entry-content { color: var(--ink); }
.entry-content h2, .entry-content h3 { color: var(--navy); }
.entry-content a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.entry-card { padding: 26px 0; border-bottom: 1px solid var(--line); }

/* Generic form styling: supports most WordPress form plugins and native fields. */
.form-content form, .entry-content form { display: grid; gap: 17px; }
.form-content p, .entry-content form p { margin: 0; }
.form-content label, .entry-content form label { display: block; color: var(--navy); font-size: 12px; font-weight: 800; margin-bottom: 6px; }
.form-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.form-content textarea, .form-content select,
.entry-content form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.entry-content form textarea, .entry-content form select {
    width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #d7e0e4; background: #fbfcfc; color: var(--ink); border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.form-content textarea, .entry-content form textarea { min-height: 145px; resize: vertical; }
.form-content input:focus, .form-content textarea:focus, .form-content select:focus,
.entry-content form input:focus, .entry-content form textarea:focus, .entry-content form select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(23,126,120,.11); }
.form-content input[type="submit"], .form-content button[type="submit"], .entry-content form input[type="submit"], .entry-content form button[type="submit"] { min-height: 50px; padding: 13px 20px; border: 0; border-radius: 11px; background: var(--teal); color: var(--white); font-weight: 800; cursor: pointer; }
.form-content input[type="submit"]:hover, .form-content button[type="submit"]:hover { background: var(--teal-dark); }
/* Common plugin cleanup */
.wpforms-container .wpforms-field, .wpcf7-form p, .nf-form-content .nf-field-container { margin-bottom: 16px !important; }
.wpforms-container input.wpforms-field-medium, .wpforms-container select.wpforms-field-medium, .wpforms-container .wpforms-field-row.wpforms-field-medium { max-width: 100% !important; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--delay, 0ms); }
.reveal-delay { --delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; } }

@media (max-width: 980px) {
    .section { padding: 78px 0; }
    .hero { min-height: auto; padding: 132px 0 54px; }
    .hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero-copy { max-width: 710px; }
    .hero-visual { min-height: 390px; max-width: 600px; width: 100%; margin-inline: auto; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .section-heading p { max-width: 650px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: .9fr 1.1fr; gap: 58px; }
    .contact-band-grid { gap: 50px; }
    .footer-grid { gap: 35px; }
}

@media (max-width: 760px) {
    .shell { width: min(calc(100% - 34px), var(--shell)); }
    .site-header { height: 86px; }
    .site-header.is-scrolled, body:not(.lexquis-front-page) .site-header { height: 80px; }
    .custom-logo { max-width: 245px; max-height: 68px; }
    .brand-mark { width: 38px; height: 38px; }
    .brand-mark span { font-size: 23px; }
    .brand-text strong { font-size: 20px; }
    .nav-toggle { display: block; margin-left: auto; }
    .primary-nav { position: fixed; inset: 80px 0 auto; display: none; min-height: calc(100vh - 80px); padding: 35px 24px; background: rgba(251,250,247,.98); flex-direction: column; align-items: stretch; }
    .primary-nav.is-open { display: flex; }
    .nav-list, .primary-nav .menu { flex-direction: column; align-items: stretch; gap: 5px; }
    .nav-list a, .primary-nav .menu a { display: block; padding: 12px 0; font-size: 18px; }
    .primary-nav .button { margin-top: 12px; }
    .hero { padding: 112px 0 48px; }
    .hero-copy h1 { font-size: clamp(45px, 14vw, 60px); }
    .hero-lede { font-size: 16px; }
    .hero-actions { gap: 18px; }
    .hero-visual { min-height: 365px; }
    .finance-card { padding: 22px; border-radius: 22px; }
    .chart-line { height: 145px; }
    .float-top { top: 8px; right: -4px; }
    .float-bottom { bottom: 7px; left: -4px; }
    .section { padding: 66px 0; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2, .about-copy h2, .contact-band h2 { font-size: 37px; }
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { min-height: 250px; }
    .cert-section { padding: 42px 0 28px; }
    .cert-card { grid-template-columns: auto 1fr; padding: 28px 24px; }
    .cert-mark { display: none; }
    .cert-card h2 { font-size: 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 54px; }
    .about-image-wrap { width: calc(100% - 22px); max-width: 430px; margin-inline: auto; }
    .since-card { right: -15px; }
    .contact-band { padding: 66px 0; }
    .contact-band-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { margin-top: 42px; }
    .contact-page-focus { padding: 112px 0 62px; }
    .contact-form-card { padding: 30px 25px; }
    .contact-quick-details { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 58px; }
}

@media (max-width: 430px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .custom-logo { max-width: 205px; max-height: 60px; }
    .brand-text small { letter-spacing: .16em; }
    .hero-copy h1 { font-size: 44px; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-trust { min-width: 0; width: 100%; }
    .hero-visual { min-height: 335px; }
    .finance-card { width: 100%; }
    .float-card { padding: 11px 12px; }
    .float-top { right: -7px; }
    .float-bottom { left: -6px; }
    .chart-bars { gap: 9px; }
    .cert-card { grid-template-columns: 1fr; }
    .cert-badge { width: 52px; height: 52px; }
    .about-copy h3 { align-items: flex-start; flex-direction: column; gap: 5px; }
    .about-copy h3 span { border-left: 0; padding-left: 0; }
}


/* Lexquis native contact form */
.contact-form-intro { margin: -10px 0 25px; color: var(--muted); }
.lexquis-contact-form { display: grid; gap: 19px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; color: var(--navy); font-size: 12px; font-weight: 800; margin-bottom: 7px; }
.form-field .optional { color: var(--muted); font-size: 10px; font-weight: 650; letter-spacing: .02em; }
.lexquis-contact-form input:not([type="hidden"]),
.lexquis-contact-form textarea,
.lexquis-contact-form select { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #d7e0e4; background: #fbfcfc; color: var(--ink); border-radius: 10px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.lexquis-contact-form textarea { min-height: 155px; resize: vertical; }
.lexquis-contact-form input:focus,
.lexquis-contact-form textarea:focus,
.lexquis-contact-form select:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(23,126,120,.11); }
.lexquis-contact-form select { appearance: auto; }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 2px; }
.form-submit-row small { color: var(--muted); font-size: 11px; }
.contact-submit { cursor: pointer; }
.contact-submit svg { transition: transform .2s ease; }
.contact-submit:hover svg { transform: translateX(3px); }
.form-notice { margin: 0 0 24px; padding: 14px 16px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.form-notice-success { color: #145b42; background: #e7f6ee; border: 1px solid #bee5cf; }
.form-notice-error { color: #8a2b2b; background: #fff0f0; border: 1px solid #f2caca; }
.lexquis-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
@media (max-width: 680px) {
    .contact-form-grid { grid-template-columns: 1fr; gap: 16px; }
    .form-submit-row { align-items: stretch; flex-direction: column; }
    .contact-submit { width: 100%; }
}


/* v1.0.5 bundled-logo containment and WordPress admin-bar handling */
.brand-has-logo { gap: 0; }
.brand-logo { display: block; width: auto; height: auto; object-fit: contain; }
.brand-logo-footer { max-height: 62px; max-width: min(300px, 100%); }
.footer-logo-card { display: inline-flex; align-items: center; justify-content: center; padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.site-header .brand-has-logo { display:flex; align-items:center; width:300px; max-width:48vw; height:100%; overflow:hidden; }
.site-header .header-logo-frame { display:flex; align-items:center; width:100%; height:76px; max-height:100%; overflow:hidden; }
.site-header .brand-logo { display:block !important; width:100% !important; height:100% !important; max-width:100% !important; max-height:100% !important; object-fit:contain !important; object-position:left center !important; }
body.admin-bar .site-header { top:32px; }
.footer-logo-card .brand-logo-footer { width:min(100%,430px) !important; height:auto !important; max-width:100% !important; max-height:none !important; }
@media (max-width:782px) { body.admin-bar .site-header { top:46px; } }
@media (max-width:760px) { .site-header .brand-has-logo { width:230px; max-width:64vw; } .site-header .header-logo-frame { height:60px; } }
@media (max-width:430px) { .site-header .brand-has-logo { width:205px; max-width:62vw; } .site-header .header-logo-frame { height:56px; } .brand-logo-footer { max-height:52px; max-width:min(255px,100%); } .footer-logo-card { padding:10px 12px; border-radius:16px; } }


/* v1.0.6: mobile first-load header visibility fix.
   On small screens the header is fully painted from the initial render and
   does not depend on a scroll event to gain its visible background. */
@media (max-width: 760px) {
    .site-header,
    body.lexquis-front-page .site-header {
        position: fixed !important;
        top: 0;
        right: 0;
        left: 0;
        height: 86px;
        background: rgba(251,250,247,.98) !important;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        box-shadow: 0 1px 0 rgba(15,42,67,.08);
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate3d(0,0,0);
        -webkit-transform: translate3d(0,0,0);
        z-index: 1000;
    }
    .site-header.is-scrolled,
    body:not(.lexquis-front-page) .site-header {
        height: 80px;
    }
    .site-header .header-inner,
    .site-header .brand-has-logo,
    .site-header .header-logo-frame,
    .site-header .brand-logo,
    .site-header .nav-toggle {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .site-header .nav-toggle {
        position: relative;
        z-index: 1002;
        flex: 0 0 44px;
    }
    .site-header .nav-toggle > span:not(.sr-only) {
        background: var(--navy) !important;
    }
    body.admin-bar .site-header {
        top: 46px;
    }
}


/* v1.0.7: conversion and credential enhancements.
   These additions intentionally preserve the established v1.0.6 visual system. */
.hero-credentials { gap: 14px; }
.hero-credential-badges { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.hero-credential-badges img { width: 42px; height: 42px; object-fit: contain; }
.hero-credentials > div:last-child { min-width: 0; }

.credential-card { grid-template-columns: minmax(0, 1fr) auto; gap: 38px; padding-block: 28px; }
.credential-copy { position: relative; z-index: 2; display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 22px; }
.credential-copy .cert-badge { flex: 0 0 auto; }
.credential-badge-row { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: flex-end; gap: 14px; }
.credential-badge-row figure { width: 88px; margin: 0; text-align: center; }
.credential-badge-row img { width: 78px; height: 78px; margin-inline: auto; object-fit: contain; filter: drop-shadow(0 7px 14px rgba(0,0,0,.14)); }
.credential-badge-row figcaption { margin-top: 7px; color: #b9ccd6; font-size: 9px; line-height: 1.25; font-weight: 750; }

.contact-schedule-option { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; padding: 20px 22px; border: 1px solid rgba(23,126,120,.14); border-radius: 16px; background: var(--mint); }
.contact-schedule-option > div { display: grid; gap: 3px; }
.contact-schedule-option strong { color: var(--navy); font-size: 14px; }
.contact-schedule-option span { color: var(--muted); font-size: 12px; }
.contact-schedule-option .button { flex: 0 0 auto; box-shadow: none; }

@media (max-width: 980px) {
    .credential-card { grid-template-columns: 1fr; gap: 24px; }
    .credential-badge-row { justify-content: flex-start; padding-left: 84px; }
}

@media (max-width: 760px) {
    .hero-credential-badges img { width: 38px; height: 38px; }
    .credential-copy { grid-template-columns: auto minmax(0,1fr); gap: 18px; }
    .credential-badge-row { padding-left: 0; justify-content: center; gap: 12px; }
    .credential-badge-row figure { width: 82px; }
    .credential-badge-row img { width: 70px; height: 70px; }
    .contact-schedule-option { align-items: stretch; flex-direction: column; gap: 15px; }
    .contact-schedule-option .button { width: 100%; }
}

@media (max-width: 430px) {
    .hero-credentials { align-items: center; }
    .hero-credential-badges { gap: 4px; }
    .hero-credential-badges img { width: 34px; height: 34px; }
    .hero-credentials strong { font-size: 13px; }
    .hero-credentials span { font-size: 11px; }
    .credential-copy { grid-template-columns: 1fr; }
    .credential-badge-row { justify-content: space-between; gap: 6px; }
    .credential-badge-row figure { width: 31%; }
    .credential-badge-row img { width: 64px; height: 64px; }
    .credential-badge-row figcaption { font-size: 8px; }
}


/* v1.0.8: global scheduling CTA in the header.
   Keeps the approved header design while giving the longer Calendly label
   enough room on desktop and a full-width treatment in the mobile menu. */
.header-calendly-cta { white-space: nowrap; }
@media (max-width: 1120px) and (min-width: 761px) {
    .site-header .brand-has-logo { width: 270px; }
    .primary-nav { gap: 22px; }
    .nav-list, .primary-nav .menu { gap: 22px; }
    .header-calendly-cta { padding-inline: 14px; font-size: 13px; }
}
@media (max-width: 760px) {
    .header-calendly-cta { width: 100%; white-space: normal; text-align: center; }
}


/* v1.0.10: credential band moved directly below the hero; desktop header badges removed. */
.lexquis-calendly-loading {
    position: fixed;
    inset: 0;
    z-index: 2147483001;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10,30,48,.32);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .16s ease, visibility .16s ease;
}
.lexquis-calendly-loading.is-visible { opacity: 1; visibility: visible; }
.lexquis-calendly-loading-card {
    width: min(92vw, 360px);
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 70px rgba(10,30,48,.22);
    color: var(--navy);
    text-align: center;
}
.lexquis-calendly-loading-card strong { font-size: 16px; }
.lexquis-calendly-loading-card > span:last-child { color: var(--muted); font-size: 12px; line-height: 1.45; }
.lexquis-calendly-spinner {
    width: 34px;
    height: 34px;
    margin-bottom: 3px;
    border: 3px solid var(--mint);
    border-top-color: var(--teal);
    border-radius: 50%;
    animation: lexquisCalendlySpin .72s linear infinite;
}
@keyframes lexquisCalendlySpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    .lexquis-calendly-loading { transition: none; }
    .lexquis-calendly-spinner { animation-duration: 1.4s; }
}


/* v1.0.11: hero mini-credential callout removed; full credential band now provides the early trust signal.
   Calendly readiness behavior is handled in main-v1.0.11.js. */

/* v1.0.12: reliable mobile first-paint header rendering.
   Use sticky positioning instead of a fixed/composited layer on small screens.
   Negative bottom margin preserves the established overlay/layout geometry so
   this changes rendering mechanics without visually moving the hero/content. */
@media (max-width: 760px) {
    .site-header,
    body.lexquis-front-page .site-header {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0;
        right: auto;
        left: auto;
        width: 100%;
        height: 86px;
        margin-bottom: -86px;
        background: #fbfaf7 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: 0 1px 0 rgba(15,42,67,.08);
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-transform: none !important;
        transform: none !important;
        isolation: isolate;
        z-index: 1000;
    }

    .site-header.is-scrolled,
    body:not(.lexquis-front-page) .site-header {
        height: 80px;
        margin-bottom: -80px;
        background: #fbfaf7 !important;
    }

    body.admin-bar .site-header {
        top: 46px;
    }
}


/* v1.0.13: modern contact-choice modal.
   Generic contact links offer scheduling first while preserving the existing
   contact form as a quieter fallback. Direct scheduling CTAs remain direct. */
body.contact-choice-open { overflow: hidden; }
.lexquis-contact-choice {
    position: fixed;
    inset: 0;
    z-index: 2147482000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}
.lexquis-contact-choice.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lexquis-contact-choice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,30,48,.52);
}
.lexquis-contact-choice-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 500px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 36px 36px 32px;
    border: 1px solid rgba(15,42,67,.08);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(10,30,48,.28);
    color: var(--ink);
    text-align: center;
    transform: translateY(10px) scale(.985);
    transition: transform .22s ease;
    outline: none;
}
.lexquis-contact-choice.is-visible .lexquis-contact-choice-dialog { transform: none; }
.lexquis-contact-choice-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--sand);
    color: var(--navy);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
}
.lexquis-contact-choice-close:hover { background: var(--mint); transform: rotate(3deg); }
.lexquis-contact-choice-close svg { width: 18px; height: 18px; stroke-width: 2; }
.lexquis-contact-choice-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 2px auto 18px;
    border-radius: 18px;
    background: var(--mint);
    color: var(--teal-dark);
}
.lexquis-contact-choice-icon svg { width: 27px; height: 27px; }
.lexquis-contact-choice .eyebrow { justify-content: center; margin-bottom: 12px; }
.lexquis-contact-choice h2 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.lexquis-contact-choice p {
    max-width: 405px;
    margin: 17px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}
.lexquis-contact-choice-actions {
    display: grid;
    gap: 11px;
    margin-top: 27px;
}
.lexquis-contact-choice-actions .button { width: 100%; min-height: 54px; }
.lexquis-contact-choice-form-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--navy);
    background: var(--white);
    font-size: 13px;
    font-weight: 750;
    transition: border-color .18s ease, background .18s ease;
}
.lexquis-contact-choice-form-link:hover { border-color: rgba(23,126,120,.28); background: var(--cream); }
.lexquis-contact-choice-close:focus-visible,
.lexquis-contact-choice-form-link:focus-visible { outline: 3px solid rgba(23,126,120,.28); outline-offset: 2px; }

@media (max-width: 600px) {
    .lexquis-contact-choice { padding: 14px; align-items: center; }
    .lexquis-contact-choice-dialog {
        width: 100%;
        max-height: calc(100vh - 28px);
        padding: 30px 22px 24px;
        border-radius: 23px;
    }
    .lexquis-contact-choice-close { top: 12px; right: 12px; }
    .lexquis-contact-choice-icon { width: 54px; height: 54px; margin-bottom: 16px; }
    .lexquis-contact-choice h2 { font-size: 32px; }
    .lexquis-contact-choice p { font-size: 14px; }
    .lexquis-contact-choice-actions { margin-top: 23px; }
}

@media (prefers-reduced-motion: reduce) {
    .lexquis-contact-choice,
    .lexquis-contact-choice-dialog,
    .lexquis-contact-choice-close { transition: none; }
}

@media (max-width: 760px) {
    .footer-bottom { align-items: flex-start; gap: 8px; }
    .footer-bottom p, .footer-credit { width: 100%; text-align: left; }
}
