/* Egypt Muse — .em-* BEM prefix | Plum-grey + mustard | Inter + mono */

:root {
    --em-plum:        #3d3640;
    --em-plum-dark:   #2a2430;
    --em-plum-mid:    #4f4654;
    --em-mustard:     #d6b13c;
    --em-mustard-dk:  #b8941e;
    --em-mustard-lt:  #f0d47a;
    --em-paper:       #fcfbf9;
    --em-paper-alt:   #f5f3ef;
    --em-ink:         #211e24;
    --em-ink-soft:    #4f4654;
    --em-mute:        #8a8390;
    --em-line:        #e0dbd8;
    --em-line-strong: #c8c0bc;
    --em-ok:          #2d6a4f;
    --em-warn:        #9b2226;

    --em-radius:      4px;
    --em-radius-md:   8px;
    --em-radius-lg:   16px;
    --em-shadow-sm:   0 1px 3px rgba(33, 30, 36, 0.07);
    --em-shadow:      0 6px 20px rgba(33, 30, 36, 0.10);
    --em-shadow-lg:   0 18px 48px rgba(33, 30, 36, 0.15);

    --em-container:   1320px;
    --em-gutter:      32px;

    --em-font-head:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --em-font-body:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --em-font-mono:   "SF Mono", "JetBrains Mono", "Fira Code", "Cascadia Code", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--em-font-body);
    font-size: 16px;
    line-height: 1.72;
    color: var(--em-ink);
    background: var(--em-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--em-mustard-dk);
    text-decoration: none;
    transition: color .18s ease;
}
a:hover { color: var(--em-plum); text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible {
    outline: 2px solid var(--em-mustard);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--em-font-head);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.025em;
    margin: 0 0 .6em;
    color: var(--em-plum-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1em; padding-left: 1.5em; }

/* ---- LAYOUT ---- */
.em-container {
    width: 100%;
    max-width: var(--em-container);
    margin: 0 auto;
    padding: 0 var(--em-gutter);
}

/* ---- EYEBROW ---- */
.em-eyebrow {
    display: inline-block;
    font-family: var(--em-font-mono);
    font-size: .73rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--em-mustard-dk);
    margin-bottom: .75rem;
}

/* ---- BUTTONS ---- */
.em-btn {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    font-family: var(--em-font-head);
    font-size: .925rem;
    font-weight: 600;
    line-height: 1;
    padding: .8em 1.6em;
    border-radius: var(--em-radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}
.em-btn:hover { text-decoration: none; }
.em-btn:focus-visible {
    outline: 2px solid var(--em-mustard);
    outline-offset: 3px;
}
.em-btn--primary {
    background: var(--em-mustard);
    color: var(--em-plum-dark);
    border-color: var(--em-mustard);
}
.em-btn--primary:hover {
    background: var(--em-mustard-dk);
    border-color: var(--em-mustard-dk);
    color: var(--em-paper);
    box-shadow: var(--em-shadow);
}
.em-btn--ghost {
    background: transparent;
    color: var(--em-plum-dark);
    border-color: var(--em-plum-mid);
}
.em-btn--ghost:hover {
    background: var(--em-plum);
    color: var(--em-paper);
    border-color: var(--em-plum);
}
.em-btn--ghost-inv {
    background: transparent;
    color: var(--em-paper);
    border-color: rgba(255,255,255,.45);
}
.em-btn--ghost-inv:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--em-mustard-lt);
    color: var(--em-mustard-lt);
}
.em-btn__arrow {
    font-style: normal;
    transition: transform .18s ease;
}
.em-btn:hover .em-btn__arrow { transform: translateX(3px); }

/* ---- HEADER / NAV ---- */
.em-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--em-plum-dark);
    border-bottom: 1px solid rgba(214,177,60,.18);
    box-shadow: 0 2px 12px rgba(33,30,36,.18);
}
.em-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}
.em-header__brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
}
.em-header__logo {
    width: 36px;
    height: 36px;
    background: var(--em-mustard);
    border-radius: var(--em-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--em-font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--em-plum-dark);
    flex-shrink: 0;
}
.em-header__name {
    font-family: var(--em-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--em-paper);
    letter-spacing: -.02em;
}
.em-header__name span {
    color: var(--em-mustard);
}
.em-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.em-nav__link {
    font-size: .875rem;
    font-weight: 500;
    color: rgba(252,251,249,.78);
    padding: .45em .75em;
    border-radius: var(--em-radius);
    transition: color .15s, background .15s;
    text-decoration: none;
}
.em-nav__link:hover,
.em-nav__link--active {
    color: var(--em-mustard-lt);
    background: rgba(214,177,60,.1);
    text-decoration: none;
}
.em-nav__link:focus-visible {
    outline: 2px solid var(--em-mustard);
    outline-offset: 2px;
}
.em-nav__cta {
    margin-left: .5rem;
    font-size: .875rem;
    padding: .55em 1.2em;
}
.em-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    color: var(--em-paper);
    flex-direction: column;
    gap: 5px;
}
.em-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}
.em-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.em-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.em-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.em-mobile-nav {
    display: none;
    background: var(--em-plum-dark);
    border-top: 1px solid rgba(214,177,60,.15);
    padding: 1rem var(--em-gutter) 1.5rem;
}
.em-mobile-nav--open { display: block; }
.em-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.em-mobile-nav__link {
    display: block;
    padding: .65em .75em;
    color: rgba(252,251,249,.85);
    font-weight: 500;
    border-radius: var(--em-radius);
    transition: color .15s, background .15s;
    text-decoration: none;
}
.em-mobile-nav__link:hover { color: var(--em-mustard-lt); background: rgba(214,177,60,.1); }

/* ---- HERO — ASYMMETRIC ---- */
.em-hero {
    position: relative;
    background: var(--em-plum-dark);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.em-hero__bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .45;
}
.em-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(42,36,48,.92) 0%,
        rgba(42,36,48,.75) 50%,
        rgba(61,54,64,.35) 100%
    );
    z-index: 1;
}
.em-hero__inner {
    position: relative;
    z-index: 2;
    padding: 5rem 0 4.5rem;
}
.em-hero__band {
    display: inline-block;
    background: var(--em-mustard);
    color: var(--em-plum-dark);
    font-family: var(--em-font-mono);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .38em 1em;
    border-radius: var(--em-radius);
    margin-bottom: 1.5rem;
}
.em-hero__headline {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--em-paper);
    margin: 0 0 1rem;
    max-width: 760px;
    line-height: 1.05;
}
.em-hero__headline em {
    font-style: normal;
    color: var(--em-mustard-lt);
}
.em-hero__lead-block {
    margin-left: clamp(0px, 10vw, 180px);
    max-width: 580px;
    background: rgba(252,251,249,.07);
    border-left: 3px solid var(--em-mustard);
    padding: 1.6rem 2rem;
    border-radius: 0 var(--em-radius-md) var(--em-radius-md) 0;
    backdrop-filter: blur(4px);
}
.em-hero__lead {
    font-size: 1.1rem;
    color: rgba(252,251,249,.88);
    line-height: 1.62;
    margin-bottom: 1.5rem;
}
.em-hero__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.em-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.em-hero__stat-num {
    font-family: var(--em-font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--em-mustard-lt);
    line-height: 1;
}
.em-hero__stat-label {
    font-size: .8rem;
    color: rgba(252,251,249,.65);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .25rem;
}

/* ---- SECTION COMMON ---- */
.em-section {
    padding: 5.5rem 0;
}
.em-section--alt {
    background: var(--em-paper-alt);
}
.em-section--dark {
    background: var(--em-plum-dark);
    color: var(--em-paper);
}
.em-section--dark h2,
.em-section--dark h3 {
    color: var(--em-paper);
}
.em-section__head {
    margin-bottom: 3rem;
}
.em-section__head--center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.em-section__intro {
    font-size: 1.08rem;
    color: var(--em-ink-soft);
    max-width: 680px;
    line-height: 1.72;
}
.em-section--dark .em-section__intro {
    color: rgba(252,251,249,.78);
}
.em-divider {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--em-mustard);
    border-radius: 99px;
    margin: 1rem 0 1.5rem;
}
.em-divider--center {
    margin: 1rem auto 1.5rem;
}

/* ---- NUMBERED TILES (cards) ---- */
.em-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}
.em-tile {
    background: var(--em-paper);
    border-radius: var(--em-radius-md);
    box-shadow: var(--em-shadow-sm);
    border: 1px solid var(--em-line);
    overflow: hidden;
    transition: box-shadow .22s ease, transform .22s ease;
    display: flex;
    flex-direction: column;
}
.em-tile:hover {
    box-shadow: var(--em-shadow);
    transform: translateY(-3px);
}
.em-tile__media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--em-plum);
}
.em-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.em-tile:hover .em-tile__media img {
    transform: scale(1.04);
}
.em-tile__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--em-mustard);
    color: var(--em-plum-dark);
    font-family: var(--em-font-mono);
    font-size: .78rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: var(--em-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.em-tile__body {
    padding: 1.4rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.em-tile__head {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--em-plum-dark);
    margin-bottom: .5rem;
}
.em-tile__text {
    font-size: .93rem;
    color: var(--em-ink-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.1rem;
}
.em-tile__link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--em-mustard-dk);
    display: inline-flex;
    align-items: center;
    gap: .3em;
}
.em-tile__link:hover { color: var(--em-plum); }

/* ---- TWO-COL SPLIT ---- */
.em-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.em-split--flip { direction: rtl; }
.em-split--flip > * { direction: ltr; }
.em-split__img {
    border-radius: var(--em-radius-md);
    overflow: hidden;
    box-shadow: var(--em-shadow-lg);
    aspect-ratio: 4/3;
}
.em-split__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.em-split__body { display: flex; flex-direction: column; gap: 1rem; }

/* ---- FEATURE LIST ---- */
.em-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.em-feature-list__item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    font-size: .96rem;
    color: var(--em-ink-soft);
    line-height: 1.6;
}
.em-feature-list__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(214,177,60,.15);
    border-radius: var(--em-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
    color: var(--em-mustard-dk);
    font-size: .8rem;
    font-weight: 700;
    font-family: var(--em-font-mono);
}

/* ---- TEAM GRID ---- */
.em-team {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}
.em-member {
    text-align: center;
}
.em-member__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.1rem;
    border: 3px solid var(--em-line);
    background: var(--em-plum-mid);
}
.em-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.em-member__name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--em-plum-dark);
    margin-bottom: .25rem;
}
.em-member__role {
    font-family: var(--em-font-mono);
    font-size: .77rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--em-mustard-dk);
    margin-bottom: .65rem;
}
.em-member__bio {
    font-size: .9rem;
    color: var(--em-ink-soft);
    line-height: 1.62;
}

/* ---- STATS BAR ---- */
.em-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--em-line);
    border: 1px solid var(--em-line);
    border-radius: var(--em-radius-md);
    overflow: hidden;
}
.em-stat {
    background: var(--em-paper);
    text-align: center;
    padding: 2rem 1.5rem;
}
.em-stat__num {
    font-family: var(--em-font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--em-mustard-dk);
    line-height: 1;
    margin-bottom: .4rem;
}
.em-stat__label {
    font-size: .83rem;
    color: var(--em-mute);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ---- PRICING ---- */
.em-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.em-plan {
    background: var(--em-paper);
    border: 1px solid var(--em-line);
    border-radius: var(--em-radius-md);
    padding: 2rem;
    position: relative;
    transition: box-shadow .22s ease;
}
.em-plan:hover { box-shadow: var(--em-shadow); }
.em-plan--featured {
    border-color: var(--em-mustard);
    box-shadow: var(--em-shadow);
}
.em-plan__badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--em-mustard);
    color: var(--em-plum-dark);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25em .75em;
    border-radius: 0 0 var(--em-radius) var(--em-radius);
}
.em-plan__name {
    font-family: var(--em-font-mono);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--em-mute);
    margin-bottom: .6rem;
}
.em-plan__price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--em-plum-dark);
    line-height: 1;
    margin-bottom: .25rem;
}
.em-plan__period {
    font-size: .85rem;
    color: var(--em-mute);
    margin-bottom: 1.4rem;
}
.em-plan__features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.em-plan__features li {
    font-size: .92rem;
    color: var(--em-ink-soft);
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.em-plan__features li::before {
    content: "→";
    color: var(--em-mustard-dk);
    font-family: var(--em-font-mono);
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: .1em;
}

/* ---- COMPARISON TABLE ---- */
.em-compare-wrap { overflow-x: auto; }
.em-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.em-compare th,
.em-compare td {
    padding: .85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--em-line);
}
.em-compare thead th {
    background: var(--em-plum-dark);
    color: var(--em-paper);
    font-weight: 600;
    font-size: .83rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.em-compare thead th:first-child { border-radius: var(--em-radius) 0 0 0; }
.em-compare thead th:last-child { border-radius: 0 var(--em-radius) 0 0; }
.em-compare tbody tr:nth-child(even) { background: var(--em-paper-alt); }
.em-compare tbody td:first-child { font-weight: 600; color: var(--em-plum-dark); }
.em-compare .em-check { color: var(--em-ok); font-weight: 700; }
.em-compare .em-cross { color: var(--em-mute); }

/* ---- FAQ ACCORDION ---- */
.em-faqs {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.em-faq {
    border: 1px solid var(--em-line);
    border-radius: var(--em-radius-md);
    overflow: hidden;
    background: var(--em-paper);
}
.em-faq__trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.1rem 1.4rem;
    font-family: var(--em-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--em-plum-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background .15s;
}
.em-faq__trigger:hover { background: var(--em-paper-alt); }
.em-faq__trigger:focus-visible {
    outline: 2px solid var(--em-mustard);
    outline-offset: -2px;
}
.em-faq__icon {
    flex-shrink: 0;
    font-family: var(--em-font-mono);
    font-size: 1.1rem;
    color: var(--em-mustard-dk);
    transition: transform .25s ease;
}
.em-faq[open] .em-faq__icon { transform: rotate(45deg); }
.em-faq__body {
    padding: 0 1.4rem 1.3rem;
    font-size: .94rem;
    color: var(--em-ink-soft);
    line-height: 1.72;
}
.em-faq details[open] > .em-faq__body {
    display: block;
}

/* ---- TESTIMONIALS ---- */
.em-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.em-testimonial {
    background: var(--em-paper-alt);
    border-radius: var(--em-radius-md);
    padding: 1.75rem;
    border-left: 3px solid var(--em-mustard);
    position: relative;
}
.em-testimonial__quote {
    font-size: .97rem;
    color: var(--em-ink-soft);
    line-height: 1.7;
    margin-bottom: 1.1rem;
    font-style: italic;
}
.em-testimonial__author {
    font-weight: 700;
    font-size: .88rem;
    color: var(--em-plum-dark);
}
.em-testimonial__origin {
    font-size: .82rem;
    color: var(--em-mute);
}

/* ---- CTA BAND ---- */
.em-cta-band {
    background: var(--em-plum);
    padding: 4.5rem 0;
    text-align: center;
}
.em-cta-band h2 {
    color: var(--em-paper);
    margin-bottom: .75rem;
}
.em-cta-band p {
    color: rgba(252,251,249,.78);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2rem;
}
.em-cta-band__actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- CONTACT FORM ---- */
.em-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.em-field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.em-field__label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--em-plum-dark);
}
.em-field__label span { color: var(--em-warn); margin-left: .15em; }
.em-field__input,
.em-field__select,
.em-field__textarea {
    font-family: var(--em-font-body);
    font-size: .96rem;
    color: var(--em-ink);
    background: var(--em-paper);
    border: 1.5px solid var(--em-line-strong);
    border-radius: var(--em-radius);
    padding: .7em 1em;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}
.em-field__input:focus,
.em-field__select:focus,
.em-field__textarea:focus {
    outline: none;
    border-color: var(--em-mustard);
    box-shadow: 0 0 0 3px rgba(214,177,60,.15);
}
.em-field__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234f4654' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9em center;
    padding-right: 2.4em;
    cursor: pointer;
}
.em-field__textarea {
    resize: vertical;
    min-height: 130px;
}
.em-form__consent {
    font-size: .84rem;
    color: var(--em-mute);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
}
.em-form__consent input[type="checkbox"] {
    margin-top: .18em;
    accent-color: var(--em-mustard-dk);
    flex-shrink: 0;
}
.em-form__status {
    padding: .9rem 1.1rem;
    border-radius: var(--em-radius);
    font-size: .92rem;
    font-weight: 500;
    display: none;
}
.em-form__status--ok {
    background: rgba(45,106,79,.1);
    color: var(--em-ok);
    border: 1px solid rgba(45,106,79,.25);
    display: block;
}
.em-form__status--err {
    background: rgba(155,34,38,.08);
    color: var(--em-warn);
    border: 1px solid rgba(155,34,38,.2);
    display: block;
}
.em-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ---- BREADCRUMB ---- */
.em-breadcrumb {
    padding: 1.1rem 0 .4rem;
    font-size: .84rem;
    color: var(--em-mute);
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}
.em-breadcrumb a { color: var(--em-mute); }
.em-breadcrumb a:hover { color: var(--em-mustard-dk); }
.em-breadcrumb__sep { color: var(--em-line-strong); }

/* ---- PAGE BANNER ---- */
.em-page-banner {
    background: var(--em-plum-dark);
    padding: 3.5rem 0;
}
.em-page-banner h1 { color: var(--em-paper); margin-bottom: .5rem; }
.em-page-banner p {
    color: rgba(252,251,249,.72);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0;
}
.em-page-banner .em-eyebrow { margin-bottom: .5rem; }

/* ---- FOOTER ---- */
.em-footer {
    background: var(--em-plum-dark);
    color: rgba(252,251,249,.72);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(214,177,60,.15);
}
.em-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.em-footer__brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--em-paper);
    margin-bottom: .5rem;
}
.em-footer__brand-name span { color: var(--em-mustard); }
.em-footer__desc {
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}
.em-footer__address {
    font-style: normal;
    font-size: .84rem;
    line-height: 1.85;
}
.em-footer__address a {
    color: rgba(252,251,249,.65);
}
.em-footer__address a:hover { color: var(--em-mustard-lt); }
.em-footer__col-title {
    font-family: var(--em-font-mono);
    font-size: .73rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--em-mustard);
    margin-bottom: 1rem;
}
.em-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.em-footer__links a {
    font-size: .88rem;
    color: rgba(252,251,249,.65);
    transition: color .15s;
}
.em-footer__links a:hover { color: var(--em-mustard-lt); text-decoration: none; }
.em-footer__bottom {
    border-top: 1px solid rgba(252,251,249,.1);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.em-footer__copy {
    font-size: .82rem;
}
.em-footer__legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.em-footer__legal-links a {
    font-size: .82rem;
    color: rgba(252,251,249,.5);
}
.em-footer__legal-links a:hover { color: var(--em-mustard-lt); }

/* ---- UTILITY ---- */
.em-tag {
    display: inline-block;
    background: rgba(214,177,60,.12);
    color: var(--em-mustard-dk);
    font-family: var(--em-font-mono);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2em .65em;
    border-radius: var(--em-radius);
}
.em-highlight {
    background: linear-gradient(to right, var(--em-plum-dark), var(--em-plum-mid));
    color: var(--em-paper);
    padding: 2.5rem;
    border-radius: var(--em-radius-md);
}
.em-highlight h3 { color: var(--em-mustard-lt); }
.em-highlight p { color: rgba(252,251,249,.82); }

.em-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.em-info-box {
    background: var(--em-paper-alt);
    border: 1px solid var(--em-line);
    border-radius: var(--em-radius-md);
    padding: 1.5rem;
}
.em-info-box__title {
    font-weight: 700;
    color: var(--em-plum-dark);
    margin-bottom: .5rem;
    font-size: .98rem;
}
.em-info-box__text {
    font-size: .9rem;
    color: var(--em-ink-soft);
    line-height: 1.65;
}

.em-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--em-line-strong);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.em-timeline__item {
    position: relative;
}
.em-timeline__dot {
    position: absolute;
    left: -2.4rem;
    top: .2rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--em-mustard);
    border: 2px solid var(--em-paper);
    box-shadow: 0 0 0 2px var(--em-mustard-dk);
}
.em-timeline__year {
    font-family: var(--em-font-mono);
    font-size: .8rem;
    color: var(--em-mustard-dk);
    font-weight: 600;
    margin-bottom: .25rem;
}
.em-timeline__title {
    font-weight: 700;
    color: var(--em-plum-dark);
    margin-bottom: .35rem;
    font-size: 1rem;
}
.em-timeline__text {
    font-size: .9rem;
    color: var(--em-ink-soft);
    line-height: 1.62;
}

.em-content-band {
    background: var(--em-paper-alt);
    border-top: 1px solid var(--em-line);
    border-bottom: 1px solid var(--em-line);
    padding: 3.5rem 0;
}

.em-prose {
    font-size: 1rem;
    color: var(--em-ink-soft);
    line-height: 1.78;
    max-width: 820px;
}
.em-prose h2 { margin-top: 2.4rem; }
.em-prose h3 { margin-top: 1.8rem; }
.em-prose p { margin-bottom: 1.1em; }
.em-prose ul, .em-prose ol { margin-bottom: 1em; }

/* ---- THANK YOU ---- */
.em-thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}
.em-thankyou__icon {
    width: 72px;
    height: 72px;
    background: rgba(45,106,79,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--em-ok);
}
.em-thankyou h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.em-thankyou p {
    font-size: 1.1rem;
    color: var(--em-ink-soft);
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    :root {
        --em-gutter: 20px;
    }
    .em-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .em-split--flip { direction: ltr; }
    .em-plans { grid-template-columns: 1fr; }
    .em-stats { grid-template-columns: repeat(2, 1fr); }
    .em-footer__grid { grid-template-columns: 1fr 1fr; }
    .em-hamburger { display: flex; }
    .em-nav { display: none; }
    .em-hero__lead-block { margin-left: 0; }
    .em-hero__stats { gap: 1.5rem; }
    .em-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .em-section { padding: 3.5rem 0; }
    .em-tiles { grid-template-columns: 1fr; }
    .em-team { grid-template-columns: repeat(2, 1fr); }
    .em-testimonials { grid-template-columns: 1fr; }
    .em-info-grid { grid-template-columns: 1fr; }
    .em-footer__grid { grid-template-columns: 1fr; }
    .em-footer__bottom { flex-direction: column; text-align: center; }
    .em-hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
    .em-team { grid-template-columns: 1fr; }
    .em-stats { grid-template-columns: 1fr 1fr; }
    .em-hero__actions { flex-direction: column; }
    .em-cta-band__actions { flex-direction: column; align-items: center; }
    h1 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
