/* history-egypt.sbs | .he-* prefix | Warm stone grey + bordeaux | Georgia serif | 18px */

:root {
    --he-stone:        #4a4641;
    --he-stone-dark:   #2e2c29;
    --he-stone-mid:    #5e5950;
    --he-stone-light:  #8a837a;
    --he-bordeaux:     #7a2e34;
    --he-bordeaux-dk:  #5e2028;
    --he-bordeaux-lt:  #9e4a50;
    --he-sand:         #f7f4ee;
    --he-sand-alt:     #eeebe3;
    --he-cream:        #faf8f3;
    --he-ink:          #2a2824;
    --he-ink-soft:     #4a4641;
    --he-mute:         #8a837a;
    --he-line:         #ddd8d0;
    --he-line-strong:  #c8c1b8;
    --he-ok:           #2d6a4f;
    --he-err:          #7a2e34;

    --he-radius-sm:    4px;
    --he-radius:       8px;
    --he-radius-lg:    16px;
    --he-shadow-sm:    0 1px 4px rgba(42, 40, 36, 0.08);
    --he-shadow:       0 5px 18px rgba(42, 40, 36, 0.11);
    --he-shadow-lg:    0 16px 48px rgba(42, 40, 36, 0.15);

    --he-container:    1140px;
    --he-gutter:       32px;

    --he-font-head:    Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
    --he-font-body:    Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    margin: 0;
    font-family: var(--he-font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--he-ink);
    background: var(--he-sand);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: var(--he-font-head);
    line-height: 1.25;
    color: var(--he-stone-dark);
    margin: 0 0 0.55em;
}

h1 { font-size: 2.55rem; font-weight: 700; }
h2 { font-size: 1.9rem; font-weight: 700; }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

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

ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

/* ─── LAYOUT HELPERS ─── */
.he-container {
    max-width: var(--he-container);
    margin-inline: auto;
    padding-inline: var(--he-gutter);
}

.he-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;
}

/* ─── BUTTONS ─── */
.he-btn {
    display: inline-block;
    padding: 0.65em 1.5em;
    font-family: var(--he-font-head);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: var(--he-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, text-decoration .15s;
    text-decoration: none;
}
.he-btn:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.he-btn--primary {
    background: var(--he-bordeaux);
    color: #fff;
    border-color: var(--he-bordeaux);
}
.he-btn--primary:hover {
    background: var(--he-bordeaux-dk);
    border-color: var(--he-bordeaux-dk);
    color: #fff;
}
.he-btn--outline {
    background: transparent;
    color: var(--he-bordeaux);
    border-color: var(--he-bordeaux);
}
.he-btn--outline:hover {
    background: var(--he-bordeaux);
    color: #fff;
}
.he-btn--white {
    background: #fff;
    color: var(--he-stone-dark);
    border-color: #fff;
}
.he-btn--white:hover {
    background: var(--he-sand);
    border-color: var(--he-sand);
    color: var(--he-stone-dark);
}
.he-btn:focus-visible {
    outline: 2px solid var(--he-bordeaux);
    outline-offset: 3px;
}

/* ─── EYEBROW ─── */
.he-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--he-bordeaux);
    margin-bottom: 0.6em;
}

/* ─── HEADER / NAV ─── */
.he-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--he-stone-dark);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.he-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 68px;
}

.he-header__logo {
    font-family: var(--he-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.he-header__logo:hover { color: var(--he-sand-alt); text-decoration: none; }
.he-header__logo span { color: var(--he-bordeaux-lt); }

.he-nav { display: flex; align-items: center; gap: 0; }

.he-nav__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.he-nav__link {
    display: block;
    padding: 0.4em 0.85em;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    border-radius: var(--he-radius-sm);
    transition: color .15s, background .15s;
}
.he-nav__link:hover,
.he-nav__link--active {
    color: #fff;
    background: rgba(255,255,255,0.08);
    text-decoration: none;
}
.he-nav__link--cta {
    background: var(--he-bordeaux);
    color: #fff;
    padding: 0.4em 1.1em;
    margin-left: 0.5rem;
    border-radius: var(--he-radius);
}
.he-nav__link--cta:hover {
    background: var(--he-bordeaux-dk);
    color: #fff;
}

.he-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4em;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
}

/* ─── HERO (FORM-RIGHT) ─── */
.he-hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(
        120deg,
        rgba(42, 40, 36, 0.78) 55%,
        rgba(122, 46, 52, 0.55) 100%
    ),
    url("../img/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.he-hero__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: center;
}

.he-hero__text .he-eyebrow { color: var(--he-bordeaux-lt); }

.he-hero__title {
    font-size: 2.9rem;
    color: #fff;
    margin-bottom: 0.5em;
}

.he-hero__lead {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.88);
    max-width: 520px;
    margin-bottom: 2em;
    line-height: 1.7;
}

.he-hero__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.he-hero__stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--he-bordeaux-lt);
    font-family: var(--he-font-head);
}
.he-hero__stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero form card */
.he-hero__form-card {
    background: rgba(250, 248, 243, 0.97);
    border-radius: var(--he-radius-lg);
    padding: 2rem;
    box-shadow: var(--he-shadow-lg);
}

.he-hero__form-title {
    font-size: 1.15rem;
    color: var(--he-stone-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--he-bordeaux);
}

/* ─── FORM ELEMENTS ─── */
.he-form__group {
    margin-bottom: 0.9rem;
}

.he-form__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--he-stone-mid);
    margin-bottom: 0.3em;
    letter-spacing: 0.03em;
}

.he-form__input,
.he-form__select,
.he-form__textarea {
    width: 100%;
    padding: 0.55em 0.85em;
    font-family: var(--he-font-body);
    font-size: 0.92rem;
    color: var(--he-ink);
    background: #fff;
    border: 1.5px solid var(--he-line-strong);
    border-radius: var(--he-radius);
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
}
.he-form__input:focus,
.he-form__select:focus,
.he-form__textarea:focus {
    outline: none;
    border-color: var(--he-bordeaux);
    box-shadow: 0 0 0 3px rgba(122, 46, 52, 0.14);
}

.he-form__textarea { resize: vertical; min-height: 90px; }

.he-form__consent {
    font-size: 0.78rem;
    color: var(--he-mute);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.he-form__consent a { color: var(--he-stone-mid); }

.he-form__status {
    display: none;
    padding: 0.6em 0.9em;
    border-radius: var(--he-radius);
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
}
.he-form__status--success {
    background: #e8f5ee;
    color: var(--he-ok);
    border: 1px solid #b6dfca;
}
.he-form__status--error {
    background: #fce8e9;
    color: var(--he-err);
    border: 1px solid #f0b8bb;
}

.he-form__btn {
    width: 100%;
    padding: 0.7em 1em;
    justify-content: center;
}

/* ─── SECTION WRAPPERS ─── */
.he-section { padding: 80px 0; }
.he-section--alt { background: var(--he-sand-alt); }
.he-section--dark {
    background: var(--he-stone-dark);
    color: rgba(255,255,255,0.88);
}
.he-section--dark h2,
.he-section--dark h3,
.he-section--dark h4 { color: #fff; }
.he-section--bordeaux {
    background: var(--he-bordeaux-dk);
    color: rgba(255,255,255,0.9);
}
.he-section--bordeaux h2,
.he-section--bordeaux h3 { color: #fff; }

.he-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}
.he-section__head p {
    font-size: 1.05rem;
    color: var(--he-stone-mid);
}
.he-section--dark .he-section__head p,
.he-section--bordeaux .he-section__head p { color: rgba(255,255,255,0.72); }

/* ─── CARDS (FLAT ICON STYLE) ─── */
.he-grid {
    display: grid;
    gap: 1.75rem;
}
.he-grid--3 { grid-template-columns: repeat(3, 1fr); }
.he-grid--2 { grid-template-columns: repeat(2, 1fr); }
.he-grid--4 { grid-template-columns: repeat(4, 1fr); }

.he-card {
    background: #fff;
    border-radius: var(--he-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--he-shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.he-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}

.he-card--flat-icon {
    text-align: center;
}

.he-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    background: var(--he-sand-alt);
    border-radius: 50%;
    color: var(--he-bordeaux);
}
.he-card__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.he-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
    color: var(--he-stone-dark);
}

.he-card__text {
    font-size: 0.92rem;
    color: var(--he-stone-mid);
    line-height: 1.65;
}

/* Photo cards */
.he-photo-card {
    border-radius: var(--he-radius);
    overflow: hidden;
    box-shadow: var(--he-shadow-sm);
    background: #fff;
    transition: box-shadow .2s, transform .2s;
}
.he-photo-card:hover {
    box-shadow: var(--he-shadow);
    transform: translateY(-3px);
}
.he-photo-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.he-photo-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.he-photo-card__title {
    font-size: 1.05rem;
    margin-bottom: 0.4em;
    color: var(--he-stone-dark);
}
.he-photo-card__text {
    font-size: 0.9rem;
    color: var(--he-stone-mid);
    line-height: 1.6;
    margin-bottom: 0.9em;
}
.he-photo-card__link {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--he-bordeaux);
    text-decoration: none;
}
.he-photo-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─── TWO-COL SPLIT ─── */
.he-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.he-split--reverse { direction: rtl; }
.he-split--reverse > * { direction: ltr; }

.he-split__img {
    border-radius: var(--he-radius-lg);
    overflow: hidden;
    box-shadow: var(--he-shadow-lg);
}
.he-split__img img { width: 100%; height: 420px; object-fit: cover; }

.he-split__body .he-eyebrow { margin-bottom: 0.5em; }
.he-split__body p { color: var(--he-stone-mid); margin-bottom: 1em; }
.he-split__body ul { color: var(--he-stone-mid); font-size: 0.95rem; }
.he-split__body ul li { margin-bottom: 0.4em; }

/* ─── FAQ ACCORDION ─── */
.he-faq { max-width: 780px; margin: 0 auto; }

.he-faq__item {
    border-bottom: 1px solid var(--he-line);
}
.he-faq__item:first-child { border-top: 1px solid var(--he-line); }

.he-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    padding: 1.1em 0;
    font-family: var(--he-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--he-stone-dark);
    cursor: pointer;
    text-align: left;
    transition: color .15s;
}
.he-faq__question:hover { color: var(--he-bordeaux); }
.he-faq__question:focus-visible {
    outline: 2px solid var(--he-bordeaux);
    outline-offset: 3px;
    border-radius: 2px;
}
.he-faq__arrow {
    flex-shrink: 0;
    transition: transform .25s;
    color: var(--he-bordeaux);
}
.he-faq__item--open .he-faq__arrow { transform: rotate(180deg); }

.he-faq__answer {
    display: none;
    padding: 0 0 1.2em;
    font-size: 0.95rem;
    color: var(--he-stone-mid);
    line-height: 1.7;
}
.he-faq__item--open .he-faq__answer { display: block; }

/* ─── PRICING CARDS ─── */
.he-price-card {
    background: #fff;
    border-radius: var(--he-radius-lg);
    padding: 2.2rem 2rem;
    box-shadow: var(--he-shadow-sm);
    border: 2px solid var(--he-line);
    transition: border-color .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.he-price-card--featured {
    border-color: var(--he-bordeaux);
    box-shadow: var(--he-shadow);
}
.he-price-card__badge {
    display: inline-block;
    background: var(--he-bordeaux);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25em 0.7em;
    border-radius: 99px;
    margin-bottom: 0.8rem;
}
.he-price-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.25em;
}
.he-price-card__tagline {
    font-size: 0.88rem;
    color: var(--he-mute);
    margin-bottom: 1.2rem;
}
.he-price-card__price {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--he-bordeaux);
    font-family: var(--he-font-head);
    margin-bottom: 0.1em;
}
.he-price-card__price span {
    font-size: 1rem;
    color: var(--he-mute);
    font-weight: 400;
}
.he-price-card__divider {
    border: none;
    border-top: 1px solid var(--he-line);
    margin: 1.2rem 0;
}
.he-price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.he-price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    font-size: 0.9rem;
    color: var(--he-stone-mid);
    padding: 0.3em 0;
}
.he-price-card__features li::before {
    content: "✓";
    color: var(--he-bordeaux);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05em;
}

/* ─── TEAM ─── */
.he-team-card {
    text-align: center;
}
.he-team-card__img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--he-bordeaux);
}
.he-team-card__name { font-size: 1.05rem; margin-bottom: 0.2em; }
.he-team-card__role {
    font-size: 0.82rem;
    color: var(--he-bordeaux);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.6em;
}
.he-team-card__bio { font-size: 0.88rem; color: var(--he-stone-mid); }

/* ─── TESTIMONIALS ─── */
.he-testimonial {
    background: var(--he-cream);
    border-radius: var(--he-radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--he-bordeaux);
    box-shadow: var(--he-shadow-sm);
}
.he-testimonial__text {
    font-style: italic;
    font-size: 1rem;
    color: var(--he-stone-mid);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.he-testimonial__text::before { content: "\201C"; }
.he-testimonial__text::after { content: "\201D"; }
.he-testimonial__author {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--he-stone-dark);
}
.he-testimonial__origin {
    font-size: 0.8rem;
    color: var(--he-mute);
}

/* ─── BREADCRUMB ─── */
.he-breadcrumb {
    padding: 1rem 0;
    background: var(--he-sand-alt);
    border-bottom: 1px solid var(--he-line);
}
.he-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    color: var(--he-mute);
}
.he-breadcrumb__list li + li::before { content: "›"; margin-right: 0.4em; }
.he-breadcrumb__list a { color: var(--he-bordeaux); }
.he-breadcrumb__list a:hover { text-decoration: underline; }

/* ─── PAGE BANNER ─── */
.he-page-banner {
    background: linear-gradient(
        135deg,
        var(--he-stone-dark) 60%,
        var(--he-bordeaux-dk) 100%
    );
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}
.he-page-banner h1 { color: #fff; font-size: 2.2rem; margin-bottom: 0.4em; }
.he-page-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* ─── CTA BAND ─── */
.he-cta-band {
    padding: 70px 0;
    background: var(--he-bordeaux-dk);
    text-align: center;
}
.he-cta-band h2 { color: #fff; margin-bottom: 0.5em; }
.he-cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 1.8rem; font-size: 1.05rem; }

/* ─── STATS BAR ─── */
.he-stats-bar {
    background: var(--he-stone-dark);
    padding: 40px 0;
}
.he-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.he-stats-bar__value {
    display: block;
    font-family: var(--he-font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--he-bordeaux-lt);
}
.he-stats-bar__label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── CONTACT PAGE ─── */
.he-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 4rem;
    align-items: flex-start;
}

.he-contact-info__item {
    display: flex;
    gap: 0.8em;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.he-contact-info__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--he-sand-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--he-bordeaux);
}
.he-contact-info__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.he-contact-info__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--he-mute);
    margin-bottom: 0.1em;
}
.he-contact-info__value { font-size: 0.95rem; color: var(--he-stone-mid); }

/* ─── FOOTER ─── */
.he-footer {
    background: var(--he-stone-dark);
    color: rgba(255,255,255,0.72);
    padding: 64px 0 0;
}

.he-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 48px;
}

.he-footer__brand-name {
    font-family: var(--he-font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.6rem;
}
.he-footer__brand-name span { color: var(--he-bordeaux-lt); }
.he-footer__brand-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.he-footer__col-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.9rem;
}

.he-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.he-footer__links li { margin-bottom: 0.5rem; }
.he-footer__links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color .15s;
}
.he-footer__links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.he-footer__address {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-style: normal;
}
.he-footer__address a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}
.he-footer__address a:hover { color: #fff; text-decoration: underline; }

.he-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.he-footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}
.he-footer__bottom-links {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.he-footer__bottom-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}
.he-footer__bottom-links a:hover { color: rgba(255,255,255,0.72); text-decoration: underline; }

/* ─── TABLE ─── */
.he-table-wrap { overflow-x: auto; }
.he-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.he-table th {
    background: var(--he-stone-dark);
    color: #fff;
    padding: 0.75em 1em;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.he-table td {
    padding: 0.7em 1em;
    border-bottom: 1px solid var(--he-line);
    color: var(--he-stone-mid);
}
.he-table tr:nth-child(even) td { background: var(--he-sand-alt); }

/* ─── INLINE HIGHLIGHT BOX ─── */
.he-highlight {
    background: var(--he-sand-alt);
    border-left: 4px solid var(--he-bordeaux);
    padding: 1.2em 1.5em;
    border-radius: 0 var(--he-radius) var(--he-radius) 0;
    margin: 1.5em 0;
    font-size: 0.95rem;
    color: var(--he-stone-mid);
}

/* ─── TIMELINE ─── */
.he-timeline { position: relative; padding-left: 2rem; }
.he-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--he-bordeaux);
    opacity: 0.35;
}
.he-timeline__item {
    position: relative;
    padding-bottom: 2rem;
}
.he-timeline__item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--he-bordeaux);
    border-radius: 50%;
    transform: translateX(-4px);
}
.he-timeline__year {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--he-bordeaux);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2em;
}
.he-timeline__event { font-size: 0.95rem; color: var(--he-stone-mid); }

/* ─── THANK YOU PAGE ─── */
.he-thankyou {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}
.he-thankyou__icon {
    width: 80px;
    height: 80px;
    background: #e8f5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--he-ok);
}
.he-thankyou__icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2; }
.he-thankyou h1 { color: var(--he-stone-dark); font-size: 2rem; }
.he-thankyou p { color: var(--he-stone-mid); max-width: 520px; margin: 0 auto 1.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    html { font-size: 17px; }

    .he-hero__inner { grid-template-columns: 1fr; }
    .he-hero__form-card { max-width: 480px; }

    .he-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .he-grid--4 { grid-template-columns: repeat(2, 1fr); }

    .he-split { grid-template-columns: 1fr; gap: 2rem; }
    .he-split--reverse { direction: ltr; }

    .he-footer__grid { grid-template-columns: 1fr 1fr; }
    .he-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

    .he-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    html { font-size: 16px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.55rem; }
    .he-hero__title { font-size: 2rem; }

    .he-section { padding: 56px 0; }
    .he-gutter { padding-inline: 20px; }

    .he-nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--he-stone-dark);
        padding: 1rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        z-index: 899;
    }
    .he-nav__list--open { display: flex; }
    .he-nav__link { padding: 0.75em 1.5em; border-radius: 0; }
    .he-nav__link--cta { margin: 0.5rem 1.5rem; }

    .he-nav__toggle { display: block; }

    .he-grid--3 { grid-template-columns: 1fr; }
    .he-grid--2 { grid-template-columns: 1fr; }
    .he-grid--4 { grid-template-columns: 1fr 1fr; }

    .he-footer__grid { grid-template-columns: 1fr; }
    .he-footer__bottom { flex-direction: column; align-items: flex-start; }

    .he-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .he-grid--4 { grid-template-columns: 1fr; }
    .he-hero__stats { flex-direction: column; gap: 0.8rem; }
    .he-split__img img { height: 240px; }
}

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