/* ── Announcement bar ─────────────────────── */
#ses-announce {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0a162d;
    color: #e8edf6;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 7px 16px;
    position: relative;
    z-index: 9999;
    flex-wrap: wrap;
}
.ses-avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    flex-shrink: 0;
    animation: ses-pulse 2s ease-in-out infinite;
}
@keyframes ses-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.ses-avail-text { color: #b8c4d8; }
.ses-avail-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #c8941f;
    color: #fff;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    transition: background 0.18s ease;
    white-space: nowrap;
}
.ses-avail-cta:hover { background: #a87518; color: #fff; }
@media (max-width: 480px) {
    .ses-avail-text { display: none; }
}

/* ── Mobile sticky CTA ────────────────────── */
#ses-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
    padding: 10px 16px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
}
@media (max-width: 767px) {
    #ses-sticky-cta { display: flex; }
}
.ses-sticky-phone,
.ses-sticky-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1;
    padding: 12px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.ses-sticky-phone:hover,
.ses-sticky-book:hover { opacity: 0.88; }
.ses-sticky-phone {
    background: #c8941f;
    color: #fff;
}
.ses-sticky-book {
    background: #0a162d;
    color: #fff;
}

/* ── Stats strip ──────────────────────────── */
.ses-stats-strip {
    background: #0a162d;
    padding: 36px 20px;
}
.ses-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.ses-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.ses-stat-item:last-child { border-right: none; }
.ses-stat-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: #c8941f;
    line-height: 1;
    font-family: inherit;
    letter-spacing: -0.02em;
}
.ses-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ses-stat-sub {
    font-size: 0.7rem;
    color: #7a8fa8;
    margin-top: 3px;
    line-height: 1.35;
}
@media (max-width: 900px) {
    .ses-stats-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 0;
    }
    .ses-stat-item:nth-child(3) { border-right: none; }
}
@media (max-width: 540px) {
    .ses-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .ses-stat-item:nth-child(2) { border-right: none; }
    .ses-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
}

/* ── Testimonials ─────────────────────────── */
.ses-testimonials {
    padding: 40px 20px;
    background: #f4f6f9;
}
.ses-testimonials-header {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.ses-testimonials-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a162d;
    margin: 0;
}
.ses-google-rating-summary {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e0e5ee;
    border-radius: 8px;
    padding: 8px 14px;
}
.ses-gr-score {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0a162d;
}
.ses-gr-stars {
    color: #f4b400;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.ses-gr-count {
    font-size: 0.75rem;
    color: #6b7280;
}
.ses-reviews-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 860px) {
    .ses-reviews-grid { grid-template-columns: 1fr; }
}
.ses-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e4e9f0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.ses-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ses-review-stars {
    color: #f4b400;
    font-size: 1.05rem;
    letter-spacing: 2px;
    display: flex;
    gap: 1px;
}
.ses-review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 0.72rem;
}
.ses-review-quote {
    margin: 0;
    padding: 0;
    border: none;
}
.ses-review-quote p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}
.ses-review-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f2f6;
}
.ses-review-author {
    font-weight: 700;
    color: #0a162d;
    font-size: 0.83rem;
}
.ses-review-location {
    font-size: 0.76rem;
    color: #6b7280;
}
.ses-review-service-tag {
    font-size: 0.68rem;
    background: #edf0f7;
    color: #374151;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 500;
    margin-left: auto;
}
.ses-reviews-cta-row {
    max-width: 1100px;
    margin: 28px auto 0;
    text-align: center;
}
.ses-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c8941f;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}
.ses-reviews-link:hover { border-bottom-color: #c8941f; }

/* ── Guarantee block ──────────────────────── */
.ses-guarantee-block {
    padding: 64px 20px;
    background: #fff;
}
.ses-guarantee-heading-row {
    max-width: 1100px;
    margin: 0 auto 40px;
    text-align: center;
}
.ses-guarantee-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a162d;
    margin: 0 0 8px;
}
.ses-guarantee-sub {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}
.ses-guarantee-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 680px) {
    .ses-guarantee-grid { grid-template-columns: 1fr; }
}
.ses-guarantee-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    background: #fafbfd;
}
.ses-guarantee-icon {
    flex-shrink: 0;
    color: #c8941f;
    margin-top: 2px;
}
.ses-guarantee-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0a162d;
    margin: 0 0 6px;
}
.ses-guarantee-desc {
    font-size: 0.85rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* ── Why Level 2 ──────────────────────────── */
.ses-why-level2 {
    padding: 64px 20px;
    background: #f4f6f9;
}
.ses-level2-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.ses-level2-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0a162d;
    margin: 0 0 14px;
}
.ses-level2-lead {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}
.ses-level2-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}
.ses-level2-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    font-size: 0.88rem;
}
.ses-level2-table thead {
    background: #0a162d;
    color: #fff;
}
.ses-level2-table thead th {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ses-level2-table thead .ses-l2t-task { text-align: left; }
.ses-level2-table tbody tr {
    border-bottom: 1px solid #f0f2f6;
}
.ses-level2-table tbody tr:last-child { border-bottom: none; }
.ses-level2-table tbody tr:hover { background: #fafbfd; }
.ses-level2-table td { padding: 13px 20px; vertical-align: middle; }
.ses-l2t-task { color: #1f2937; line-height: 1.4; text-align: left; }
.ses-l2t-std, .ses-l2t-l2 { text-align: center; }
.ses-tick svg { color: #16a34a; }
.ses-cross svg { color: #dc2626; }
.ses-l2-badge {
    display: inline-block;
    background: #c8941f;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 7px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.04em;
    vertical-align: middle;
    margin-left: 5px;
}
/* Mobile: comparison table fits the viewport — no horizontal scroll.
   Icon columns go narrow, long header words hide (Standard / Level 2 ASP),
   padding tightens, and the task column flexes to wrap. */
@media (max-width: 600px) {
    .ses-why-level2 { padding: 44px 14px; }
    .ses-level2-intro { margin-bottom: 26px; }
    .ses-level2-heading { font-size: 1.32rem; }
    .ses-level2-lead { font-size: 0.86rem; }
    .ses-level2-table-wrap { overflow-x: visible; }
    .ses-level2-table { font-size: 0.8rem; }
    .ses-level2-table thead th { padding: 10px 5px; font-size: 0.6rem; letter-spacing: 0.01em; line-height: 1.2; }
    .ses-level2-table thead .ses-l2t-task { font-size: 0.62rem; }
    .ses-level2-table td { padding: 11px 6px; }
    .ses-l2t-task { font-size: 0.8rem; line-height: 1.35; }
    .ses-l2t-std, .ses-l2t-l2 { width: 58px; }
    .ses-l2t-hide-sm { display: none; }
    .ses-l2-badge { margin-left: 0; font-size: 0.56rem; padding: 2px 5px; }
    .ses-tick svg, .ses-cross svg { width: 16px; height: 16px; }
}

/* ── MEGA NAV ───────────────────────────────── */
.ses-meganav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ses-mn-item { position: relative; }
.ses-mn-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 12px 14px;
    font: inherit;
    font-weight: 600;
    color: #1a1f2c;
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none !important;
    line-height: 1.2;
    min-height: 44px;
}
.ses-mn-link:hover,
.ses-mn-link:focus-visible { background: #f5f6f9; color: #0d0d0d; }
.ses-mn-link:focus-visible { outline: 2px solid #f4ab0f; outline-offset: 2px; }
/* .ses-mn-caret rules now defined below with SVG-friendly styling */

.ses-mn-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f4ab0f;
    color: #0d0d0d !important;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none !important;
    margin-left: 8px;
    box-shadow: 0 4px 14px -6px rgba(244, 171, 15, .55);
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 44px;
    line-height: 1.2;
}
.ses-mn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px -6px rgba(244, 171, 15, .75); }
.ses-mn-cta:focus-visible { outline: 3px solid #0d0d0d; outline-offset: 3px; }

/* Mobile drawer header (close button) — hidden on desktop */
.ses-mn-drawer-head { display: none !important; }
.ses-mn-caret {
    transition: transform .2s ease;
    opacity: .65;
    flex: none;
}
.ses-mn-has-mega[data-open="true"] > .ses-mn-link > .ses-mn-caret { transform: rotate(180deg); }

/* Mega panel ─────────────────────────────────── */
.ses-mn-panel {
    position: absolute;
    top: calc(100% + 6px);
    /* Center the panel under its trigger; transform handles overflow protection. */
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid #e6e9f1;
    border-radius: 14px;
    box-shadow: 0 22px 50px -20px rgba(13, 13, 13, .25), 0 6px 18px -8px rgba(13, 13, 13, .15);
    padding: 22px;
    width: max-content;
    max-width: min(94vw, 920px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 9999;
}
.ses-mn-panel--narrow { max-width: min(94vw, 420px); }
.ses-mn-has-mega:hover > .ses-mn-panel,
.ses-mn-has-mega:focus-within > .ses-mn-panel,
.ses-mn-has-mega[data-open="true"] > .ses-mn-panel {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
/* When a panel has data-overflow attribute, JS has measured it and switched
   the anchor — strip the translateX so the inline left/right styles take effect. */
.ses-mn-panel[data-overflow="left"],
.ses-mn-panel[data-overflow="right"] {
    transform: translateX(0) translateY(-6px) !important;
}
.ses-mn-has-mega:hover > .ses-mn-panel[data-overflow],
.ses-mn-has-mega:focus-within > .ses-mn-panel[data-overflow],
.ses-mn-has-mega[data-open="true"] > .ses-mn-panel[data-overflow] {
    transform: translateX(0) translateY(0) !important;
}

.ses-mn-grid { display: grid; gap: 10px; }
.ses-mn-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ses-mn-grid--3 { grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 14px; }
.ses-mn-grid--4 { grid-template-columns: repeat(4, minmax(180px, 1fr)); gap: 18px; }

.ses-mn-card {
    display: block; padding: 12px 14px; border-radius: 10px;
    text-decoration: none !important; color: #1a1f2c;
    border: 1px solid transparent;
    transition: border-color .12s ease, background .12s ease;
}
.ses-mn-card:hover { background: #fcfaf2; border-color: #f4ab0f; }
.ses-mn-card__t { display: block; font-weight: 700; color: #0d0d0d; font-size: .96rem; margin-bottom: 3px; }
.ses-mn-card__d { display: block; font-size: .82rem; color: #5a6072; line-height: 1.4; }

.ses-mn-col__h {
    margin: 0 0 8px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c48400;
}
.ses-mn-col__list { list-style: none; margin: 0; padding: 0; }
.ses-mn-col__list li { margin: 0; }
.ses-mn-col__list a {
    display: block; padding: 6px 8px; border-radius: 6px;
    text-decoration: none !important;
    color: #2a3040; font-size: .9rem; line-height: 1.4;
}
.ses-mn-col__list a:hover { background: #f5f6f9; color: #0d0d0d; }

.ses-mn-area {
    display: block; padding: 10px 12px; border-radius: 8px;
    background: #f8f9fc; color: #1a1f2c; font-weight: 600; font-size: .92rem;
    text-decoration: none !important;
    text-align: center;
    transition: background .12s ease, color .12s ease;
}
.ses-mn-area:hover { background: #f4ab0f; color: #0d0d0d; }

.ses-mn-simple { list-style: none; margin: 0; padding: 0; }
.ses-mn-simple a {
    display: block; padding: 10px 12px; border-radius: 8px;
    text-decoration: none !important;
    color: #1a1f2c; font-weight: 600;
}
.ses-mn-simple a:hover { background: #f5f6f9; }

.ses-mn-foot {
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid #edf0f7;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    flex-wrap: wrap;
}
.ses-mn-foot__link { font-weight: 700; color: #c48400; text-decoration: none !important; font-size: .92rem; }
.ses-mn-foot__cta {
    background: #0d0d0d; color: #fff !important;
    padding: 10px 18px; border-radius: 999px;
    text-decoration: none !important; font-weight: 700; font-size: .9rem;
}
.ses-mn-foot__cta--emergency { background: #c91414; }

/* Mobile (≤ 900px): convert to drawer */
/* Body scroll lock when drawer is open */
html.ses-mn-locked,
html.ses-mn-locked body { overflow: hidden !important; touch-action: none; }

/* Forcibly hide Blocksy's own offcanvas panel — we ship our own drawer.
   Without this, Blocksy's empty offcanvas (with just social icons) opens too. */
.ct-panel,
.ct-panel-mobile,
[data-panel="modal"],
.ct-drawer-canvas,
.ct-panel-content,
.ct-panel-actions,
.ct-back-to-top + .ct-panel,
body[data-panel="opened"]::before,
body[data-panel="opened"]::after {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
/* Defensive: clear Blocksy's opened-state markers so its CSS doesn't interfere */
body[data-panel="opened"] { overflow: auto !important; }

/* Hide the legacy Blocksy "Entry Content Block" on Blog/archive pages that
   still hardcodes "Are you experiencing issues…" rhetorical Q + duplicate CTAs.
   This block is configured via the Blocksy customizer and is identified by its
   stable data-id (Blocksy assigns a random hash per block instance). */
.ct-entry-content-block[data-id="pxbthskSieXM5S11kDGgT"] { display: none !important; }
/* Belt-and-braces: hide ANY entry-content-block whose first H3 contains the
   rhetorical "Are you experiencing issues" phrase (in case data-id changes). */
.ct-entry-content-block:has(h3:where(:not(:empty)) span:where(.stk-highlight)) {
    /* Pattern check too narrow — rely on data-id rule above first. */
}

/* The body-attached drawer clone is mobile-only.
   On desktop, hide it entirely (the in-header inline mega-bar is what shows). */
.ses-meganav--drawer { display: none !important; }
@media (max-width: 900px) {
    .ses-meganav--drawer { display: flex !important; }
    /* And hide any in-header inline mega-bar on mobile (Blocksy already hides
       #header-menu-1 but defensive against other render paths) */
    header .ses-meganav:not(.ses-meganav--drawer) { display: none !important; }
}

/* Real interactive overlay (replaces ::after pseudo) */
.ses-mn-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 13, 13, .5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s;
    z-index: 99998;
    cursor: pointer;
}
body.ses-mn-open .ses-mn-overlay {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .ses-meganav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 380px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        /* No top padding — drawer starts at viewport top, header strip is first
           item. Bottom padding clears the fixed sticky CTA bar (≈76px). */
        padding: 0 0 96px;
        gap: 0;
        transform: translateX(100%);
        transition: transform .28s cubic-bezier(.2, .8, .2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        box-shadow: -20px 0 50px -20px rgba(0, 0, 0, .35);
        z-index: 99999;
        will-change: transform;
    }
    body.ses-mn-open .ses-meganav { transform: translateX(0); }
    body.ses-mn-open .ses-mn-overlay { display: block; }

    /* Drawer header strip (real element with close button) — normal flow, first child */
    .ses-mn-drawer-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: env(safe-area-inset-top, 20px) 16px 14px 20px;
        padding-top: max(env(safe-area-inset-top, 0px), 20px);
        background: #fff;
        border-bottom: 1px solid #edf0f7;
        flex: none;
        min-height: 64px;
        order: -1; /* defensive: force first even if DOM order changes */
    }
    .ses-mn-drawer-head__title {
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: #6b7280;
    }
    .ses-mn-drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        background: #f5f6f9;
        color: #0d0d0d;
        border: 0;
        border-radius: 10px;
        cursor: pointer;
        transition: background .15s ease, transform .12s ease;
    }
    .ses-mn-drawer-close:hover { background: #e8ebf2; }
    .ses-mn-drawer-close:focus-visible { outline: 2px solid #f4ab0f; outline-offset: 2px; }
    .ses-mn-drawer-close:active { transform: scale(.94); }

    .ses-mn-item { width: 100%; }
    .ses-mn-link {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #edf0f7;
        border-radius: 0;
        font-size: 1rem;
        min-height: 56px;
    }
    .ses-mn-link--plain { font-size: 1rem; }

    .ses-mn-cta {
        margin: 14px 20px 8px;
        padding: 14px 22px;
        font-size: 1.02rem;
        justify-content: center;
        min-height: 52px;
        text-align: center;
    }

    .ses-mn-panel {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0;
        padding: 8px 20px 12px;
        max-width: none; width: auto;
        background: #fafbfd;
        display: none;
    }
    .ses-mn-has-mega[data-open="true"] > .ses-mn-panel { display: block; }
    .ses-mn-grid--3, .ses-mn-grid--4, .ses-mn-grid--2 { grid-template-columns: 1fr; gap: 2px; }
    .ses-mn-card { padding: 12px 14px; min-height: 56px; }
    .ses-mn-card__t { font-size: .98rem; }
    /* Reveal short tag-lines on mobile (value-prop matters) */
    .ses-mn-card__d {
        display: block;
        font-size: .8rem;
        color: #5a6072;
        margin-top: 2px;
        line-height: 1.35;
    }
    .ses-mn-col { padding: 6px 0; }
    .ses-mn-col__h { padding: 8px 0 4px; }
    .ses-mn-col__list a { padding: 10px 8px; min-height: 44px; }
    .ses-mn-area { min-height: 44px; padding: 12px 14px; }
    .ses-mn-simple a { min-height: 44px; padding: 12px 12px; }
    .ses-mn-foot {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
    }
    .ses-mn-foot__cta { text-align: center; padding: 12px 18px; min-height: 44px; }
}

/* Mega-nav hamburger toggle — visible, prominent, ≥44×44 touch target */
.ses-mn-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0d0d0d;
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: background .15s ease, transform .12s ease;
    flex: none;
    z-index: 100001;
    position: relative;
}
.ses-mn-toggle:hover { background: #2a2a2a; }
.ses-mn-toggle:focus-visible { outline: 3px solid #f4ab0f; outline-offset: 2px; }
.ses-mn-toggle:active { transform: scale(.96); }
.ses-mn-toggle[aria-expanded="true"] { background: #f4ab0f; color: #0d0d0d; }
@media (max-width: 900px) {
    .ses-mn-toggle { display: inline-flex; }
}

/* ── Services archive page (overrides Elementor) ── */
.ses-archive-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px 40px;
}
.ses-archive-hero {
    text-align: center;
    padding: 56px 16px 40px;
}
.ses-archive-bc {
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 14px;
}
.ses-archive-bc a {
    color: #c48400;
    text-decoration: none;
}
.ses-archive-bc a:hover { text-decoration: underline; }
.ses-archive-h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.15;
    color: #0d0d0d;
    margin: 0 0 16px;
    letter-spacing: -.01em;
}
.ses-archive-lede {
    font-size: 1.075rem;
    line-height: 1.6;
    color: #3b3f4a;
    max-width: 720px;
    margin: 0 auto 28px;
}
.ses-archive-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: left;
}
.ses-archive-intro .ses-archive-h2 {
    text-align: left;
    margin-bottom: 14px;
}
.ses-archive-intro p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #3b3f4a;
    margin: 0 0 16px;
}

/* Faults archive (/electrical-faults/) ──────── */
.ses-faults-archive { padding: 0 16px 60px; max-width: 1180px; margin: 0 auto; }
.ses-faults-groups { margin-top: 36px; }
.ses-faults-groups__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.ses-faults-group {
    background: #fff;
    border: 1px solid #e6e9f1;
    border-radius: 12px;
    padding: 22px;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ses-faults-group:hover {
    border-color: #f4ab0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px -10px rgba(13, 13, 13, .15);
}
.ses-faults-group__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f2f7;
}
.ses-faults-group__icon {
    flex: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff5e0;
    color: #c48400;
    border-radius: 10px;
}
.ses-faults-group__title { margin: 0; font-size: 1.1rem; color: #0d0d0d; }
.ses-faults-group__desc { margin: 4px 0 0; color: #5a6072; font-size: 0.92rem; line-height: 1.4; }
.ses-faults-group__list { list-style: none; margin: 0; padding: 0; }
.ses-faults-group__list li { margin: 0; }
.ses-faults-group__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    margin: 1px 0;
    border-radius: 6px;
    color: #2a3040;
    text-decoration: none;
    font-size: 0.94rem;
    line-height: 1.4;
}
.ses-faults-group__list a:hover { background: #fcfaf2; color: #c48400; }
.ses-faults-group__list a > span { color: #c48400; opacity: .65; font-weight: 700; }

.ses-faults-when-to-call {
    margin: 56px auto 0;
    padding: 36px 22px 28px;
    background: #fafbfd;
    border-radius: 16px;
    max-width: 1100px;
}
.ses-faults-when-to-call h2 { margin: 0 0 24px; text-align: center; }
.ses-faults-when__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.ses-faults-when__grid > div {
    background: #fff;
    border: 1px solid #e6e9f1;
    border-radius: 12px;
    padding: 22px;
}
.ses-faults-when__grid h3 {
    margin: 0 0 14px;
    font-size: 1.1rem;
    color: #0d0d0d;
}
.ses-faults-when__grid ul {
    margin: 0 0 14px;
    padding-left: 20px;
    color: #2a3040;
    line-height: 1.55;
}
.ses-faults-when__grid li { margin: 4px 0; }
.ses-faults-when__grid p { margin: 14px 0 0; color: #2a3040; line-height: 1.55; font-size: 0.95rem; }
.ses-faults-when__grid a:not(.ses-inline-cta) { color: #c48400; font-weight: 700; }
.ses-inline-cta {
    display: inline-block;
    color: #c48400 !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #f4ab0f;
    padding-bottom: 2px;
}
.ses-inline-cta:hover { color: #0d0d0d !important; border-bottom-color: #0d0d0d; }

/* Homepage layout overrides removed — Stackable/Blocksy interactions made
   width and grid-layout changes too risky. Whitespace reduction will be done
   by editing post_content to remove redundant spacer blocks instead. */

/* Team portrait (homepage Our Story + About page) ─── */
.ses-team-portrait,
.ses-about-team-portrait {
    margin: 24px auto 32px;
    max-width: 1080px;
}
.ses-team-portrait img,
.ses-about-team-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 16px 40px -20px rgba(13, 13, 13, .25);
}
.ses-team-portrait figcaption,
.ses-about-team-portrait figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #5a6072;
    font-style: italic;
    line-height: 1.5;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .ses-team-portrait,
    .ses-about-team-portrait {
        margin: 20px auto 24px;
    }
    .ses-team-portrait img,
    .ses-about-team-portrait img {
        border-radius: 10px;
    }
    .ses-team-portrait figcaption,
    .ses-about-team-portrait figcaption {
        font-size: 0.85rem;
    }
}

/* About page ─────────────────────────────────── */
.ses-about-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px 60px;
}
.ses-about-hero {
    text-align: center;
    padding: 56px 16px 40px;
}
.ses-about-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c48400;
    font-weight: 700;
    margin: 0 0 14px;
}
.ses-about-story {
    max-width: 780px;
    margin: 40px auto 24px;
    padding: 0 8px;
}
.ses-about-story h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 18px;
    color: #0d0d0d;
}
.ses-about-story p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2a3040;
    margin: 0 0 16px;
}
.ses-about-pillars {
    max-width: 1100px;
    margin: 48px auto 16px;
    padding: 0 8px;
}
.ses-about-pillars h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 28px;
    color: #0d0d0d;
}
.ses-about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.ses-about-pillars__grid article {
    background: #fff;
    border: 1px solid #e6e9f1;
    border-radius: 12px;
    padding: 22px 22px 20px;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ses-about-pillars__grid article:hover {
    border-color: #f4ab0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px -10px rgba(13, 13, 13, .15);
}
.ses-about-pillars__grid h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #0d0d0d;
}
.ses-about-pillars__grid p {
    margin: 0;
    color: #4a4f5b;
    line-height: 1.5;
    font-size: 0.96rem;
}
.ses-about-cta-final {
    text-align: center;
    margin: 56px auto 0;
    padding: 40px 20px;
    background: linear-gradient(180deg, #fafbfd 0%, #f4f6fa 100%);
    border-radius: 16px;
    max-width: 900px;
}
.ses-about-cta-final h2 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    color: #0d0d0d;
}
.ses-about-cta-final p {
    margin: 0 0 22px;
    color: #4a4f5b;
    font-size: 1.02rem;
}
.ses-archive-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.ses-archive-cta-primary,
.ses-archive-cta-secondary {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    transition: transform .15s ease, box-shadow .15s ease;
    min-height: 48px;
    line-height: 1.4;
}
.ses-archive-cta-primary {
    background: #f4ab0f;
    color: #0d0d0d !important;
    box-shadow: 0 6px 18px -8px rgba(244, 171, 15, .55);
}
.ses-archive-cta-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(244, 171, 15, .7); }
.ses-archive-cta-secondary {
    background: transparent;
    color: #0d0d0d !important;
    border: 2px solid #0d0d0d;
}
.ses-archive-cta-secondary:hover { background: #0d0d0d; color: #fff !important; }
.ses-archive-cta-primary:focus-visible,
.ses-archive-cta-secondary:focus-visible {
    outline: 3px solid #f4ab0f;
    outline-offset: 3px;
}
.ses-archive-services { padding: 12px 0 8px; }
.ses-archive-h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 30px 0 6px;
    color: #0d0d0d;
}

/* ── Services grid (used on /electrical-services/ archive) ── */
.ses-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 32px auto;
    padding: 0 16px;
}
.ses-service-card {
    display: block;
    background: #fff;
    border: 1px solid #e6e9f1;
    border-radius: 12px;
    padding: 22px 22px 18px;
    text-decoration: none !important;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ses-service-card:hover,
.ses-service-card:focus-visible {
    border-color: #f4ab0f;
    box-shadow: 0 6px 22px -10px rgba(13, 13, 13, .25);
    transform: translateY(-2px);
}
.ses-service-card:focus-visible {
    outline: 2px solid #f4ab0f;
    outline-offset: 2px;
}
.ses-service-card__title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0d0d0d;
}
.ses-service-card__desc {
    margin: 0 0 14px;
    font-size: .95rem;
    line-height: 1.45;
    color: #4a4f5b;
}
.ses-service-card__cta {
    font-size: .9rem;
    font-weight: 600;
    color: #c48400;
    letter-spacing: .01em;
}

/* ── Brand logos ──────────────────────────── */
.ses-brand-logos {
    padding: 36px 20px;
    background: #fff;
    border-top: 1px solid #edf0f7;
    border-bottom: 1px solid #edf0f7;
}
.ses-brand-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 20px;
}
.ses-brand-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ses-brand-item {
    padding: 8px 22px;
    border: 1px solid #e4e9f0;
    border-radius: 8px;
    background: #fafbfd;
}
.ses-brand-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ── Body bottom padding (mobile sticky bar) ── */
@media (max-width: 767px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

