/* ==========================================================================
   Ethio One — public site (landing) redesign
   --------------------------------------------------------------------------
   Loaded last, after home-assets/dashlite.min.css + theme.css and the inline
   <style> blocks in layout/website.blade.php.

   Palette: deep emerald #0B6E4F · gold #E0A100 (from the logo).

   The landing page is static markup (resources/views/site/home.blade.php).
   Section 14 holds its design system; earlier sections cover shared chrome
   (nav, buttons, footer) also used by /legal.
   ========================================================================== */

:root {
    --s-primary: #0b6e4f;
    --s-primary-600: #095c42;
    --s-primary-700: #085239;
    --s-primary-050: #e8f4ef;
    --s-primary-100: #cde7dc;

    --s-gold: #e0a100;
    --s-gold-050: #fdf4de;

    --s-ink: #0d1b14;
    --s-body: #46564d;
    --s-muted: #7b8b81;
    --s-line: #e4ebe6;
    --s-surface: #ffffff;
    --s-tint: #f4f8f5;

    --s-shadow-sm: 0 1px 3px rgba(13, 27, 20, .06), 0 1px 2px rgba(13, 27, 20, .04);
    --s-shadow: 0 6px 20px rgba(13, 27, 20, .08);
    --s-shadow-lg: 0 18px 44px rgba(13, 27, 20, .14);

    --s-radius: 16px;
    --s-radius-sm: 12px;
}

body { background: var(--s-surface); color: var(--s-body); }

/* --------------------------------------------------------------------------
   1. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6,
.title, .header-title {
    color: var(--s-ink);
    letter-spacing: -.022em;
    font-weight: 720;
}

.header-title { font-size: clamp(1.9rem, 1.1rem + 2.6vw, 3.1rem); line-height: 1.12; }
h2, .title      { font-size: clamp(1.35rem, .95rem + 1.35vw, 2rem); line-height: 1.22; }

p, li { color: var(--s-body); line-height: 1.72; }

a { color: var(--s-primary-700); }
a:hover { color: var(--s-primary); }

/* --------------------------------------------------------------------------
   2. Section rhythm
   Alternating white / tint instead of three saturated blue slabs.
   -------------------------------------------------------------------------- */

section,
.section {
    position: relative;
    padding-top: clamp(2.75rem, 1.6rem + 4vw, 5.5rem);
    padding-bottom: clamp(2.75rem, 1.6rem + 4vw, 5.5rem);
}








/* --------------------------------------------------------------------------
   3. Hero
   Note: `header#home` is the sticky nav bar (~150px), NOT the banner — an
   overlay applied there tints the navigation. The banner keeps its photo;
   only the type is strengthened for contrast.
   -------------------------------------------------------------------------- */

.header-title,
.header-content h1,
.header-content p {
    text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */

.header-main.is-sticky,
.header-main {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--s-line);
    box-shadow: none;
}

/* The frosted bar is desktop-only.
   backdrop-filter makes an element the containing block for its position:fixed
   descendants, and the mobile slide-in menu (.header-menu) is exactly that — it was
   being clamped to the header's 77px box instead of the viewport, so the white panel
   was a stub and 4 of the 6 links rendered outside it over the page, which read as a
   see-through menu. Solid background below the desktop breakpoint instead. */
@media (max-width: 991.98px) {
    .header-main.is-sticky,
    .header-main {
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.menu-link,
.menu-list .menu-link {
    color: var(--s-body) !important;
    font-weight: 620;
    font-size: .92rem;
    padding: .5rem .85rem;
    border-radius: 9px;
    transition: background-color .15s ease, color .15s ease;
}

.menu-link:hover { background: var(--s-primary-050); color: var(--s-primary-700) !important; }

.header-logo .logo-img { max-height: 44px; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn-primary,
.btn-success,
.btn.btn-primary,
.btn.btn-success {
    background-color: var(--s-primary) !important;
    border-color: var(--s-primary) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 650;
    padding: .62rem 1.25rem;
    box-shadow: 0 1px 2px rgba(11, 110, 79, .24);
    transition: background-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.btn-primary:hover, .btn-success:hover {
    background-color: var(--s-primary-700) !important;
    border-color: var(--s-primary-700) !important;
    box-shadow: 0 6px 18px rgba(11, 110, 79, .3);
    transform: translateY(-1px);
}

.btn-outline-primary,
.btn-outline-light {
    border-radius: 10px;
    font-weight: 650;
    color: var(--s-primary) !important;
    border-color: var(--s-primary-100) !important;
    background: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-light:hover {
    background: var(--s-primary-050) !important;
    border-color: var(--s-primary) !important;
}

/* Gold is the accent, reserved for a single emphasis action. */
.btn-warning, .btn-gold {
    background-color: var(--s-gold) !important;
    border-color: var(--s-gold) !important;
    color: #1a1403 !important;
    border-radius: 10px;
    font-weight: 680;
}

.btn:focus-visible, a:focus-visible {
    outline: 2px solid var(--s-primary);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   6. Cards (vision / mission / values, feature blocks)
   -------------------------------------------------------------------------- */

.card,
.feature-card,
.ol-block .card {
    background: var(--s-surface);
    border: 1px solid var(--s-line) !important;
    border-radius: var(--s-radius);
    box-shadow: var(--s-shadow-sm);
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.card:hover,
.feature-card:hover {
    box-shadow: var(--s-shadow);
    transform: translateY(-3px);
    border-color: var(--s-primary-100) !important;
}

.card .card-body, .card .card-inner { padding: 1.6rem 1.5rem; }

/* Icon medallions above the vision/mission/values cards */
.card img[src*="icon"],
.feature-icon img,
.card .icon-wrap img { max-height: 56px; }

/* --------------------------------------------------------------------------
   7. Imagery
   The page mixed squared, blob and rounded treatments. Unify.
   -------------------------------------------------------------------------- */

.section img.rounded,
.ol-block img {
    border-radius: var(--s-radius);
    box-shadow: var(--s-shadow);
    max-width: 100%;
    height: auto;
}

/* The header logo and inline icons must not inherit the treatment above. */
.header-logo img, .logo-img,
.footer_top img, .social-icons img,
img[src*="logo"] {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   8. Lists inside the services block
   -------------------------------------------------------------------------- */




/* --------------------------------------------------------------------------
   9. Rewards strip
   -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
   10. Contact band — the one deliberately saturated section
   -------------------------------------------------------------------------- */






/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */

.new_footer_area.bg_color { background: var(--s-tint) !important; }

/* .footer_bg is an absolutely-positioned ~266px illustration anchored to the
   bottom of this block. The original 250px bottom padding reserved its space;
   shrinking it made the artwork overlap the footer columns. */
.new_footer_top { padding: 3.5rem 0 270px !important; }

.new_footer_area .footer_bottom {
    background: var(--s-ink) !important;
    color: rgba(255, 255, 255, .78);
    padding-top: 1.1rem !important;
    padding-bottom: 1.1rem !important;
}

.new_footer_area .footer_bottom a { color: #fff; }

.new_footer_area h3, .new_footer_area .f_title {
    color: var(--s-ink);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .9rem;
}

.new_footer_area a { color: var(--s-body); }
.new_footer_area a:hover { color: var(--s-primary); }

/* The decorative cityscape/illustration dominated the footer. */
.footer_bg, .footer_bg_one, .footer_bg_two { opacity: .5; }

/* --------------------------------------------------------------------------
   12. Language switcher
   -------------------------------------------------------------------------- */

/* The layout sets these with !important from a <style> block later in the
   document, so these need higher specificity to win rather than later order. */
body .gtranslate_wrapper > div,
body .gtranslate_wrapper button,
body .gtranslate_wrapper .gt_selector,
body .gtranslate_wrapper select {
    background-color: var(--s-primary) !important;
    border-color: var(--s-primary) !important;
    border-radius: 10px !important;
}

body .gtranslate_wrapper,
body .gtranslate_wrapper * { --gt-bg: var(--s-primary) !important; }

/* --------------------------------------------------------------------------
   13. Preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .card, .btn, .feature-card { transition: none !important; }
    .card:hover, .btn:hover, .feature-card:hover { transform: none !important; }
}

@media (max-width: 767.98px) {
    .card .card-body, .card .card-inner { padding: 1.25rem 1.15rem; }
}

/* ==========================================================================
   14. STATIC LANDING PAGE
   The page was rebuilt as fixed markup (site/home.blade.php). Everything
   below styles that structure. Scoped with .eo- prefixes so it cannot
   collide with the DashLite template classes.
   ========================================================================== */

.eo-section {
    padding: clamp(3rem, 1.8rem + 4.5vw, 6rem) 0;
    background: var(--s-surface);
    position: relative;
}

.eo-section--tint { background: var(--s-tint); }

.eo-section-head {
    max-width: 60ch;
    margin: 0 auto clamp(1.75rem, 1rem + 2.5vw, 3rem);
    text-align: center;
}

.eo-eyebrow {
    display: inline-block;
    margin-bottom: .55rem;
    padding: .25rem .7rem;
    border-radius: 999px;
    background: var(--s-primary-050);
    color: var(--s-primary-700);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.eo-eyebrow--on-dark {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.eo-h2 {
    margin: 0 0 .5rem;
    font-size: clamp(1.4rem, 1rem + 1.5vw, 2.1rem);
    font-weight: 730;
    line-height: 1.24;
    letter-spacing: -.024em;
    color: var(--s-ink);
}

.eo-h2--on-dark { color: #fff; }

.eo-section-head__sub { color: var(--s-muted); font-weight: 600; margin: 0; }
.eo-lead-sm { color: var(--s-primary); font-weight: 700; margin: 0 0 .85rem; }

/* --------------------------------------------------------------------------
   Hero band
   -------------------------------------------------------------------------- */

.eo-hero-band {
    position: relative;
    padding: clamp(3.25rem, 2rem + 6vw, 6.5rem) 0 clamp(2.5rem, 1.5rem + 4vw, 4rem);
    background:
        linear-gradient(135deg, #07452f 0%, var(--s-primary-700) 42%, var(--s-primary) 100%);
    color: #fff;
    overflow: hidden;
}

/* Geometric texture — drawn in CSS, no extra image request. */
.eo-hero-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .07) 0 2px, transparent 2px),
        radial-gradient(circle at 62% 68%, rgba(255, 255, 255, .05) 0 2px, transparent 2px);
    background-size: 46px 46px, 74px 74px;
    opacity: .9;
    pointer-events: none;
}

.eo-hero-band__glow {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(224, 161, 0, .30) 0%, rgba(224, 161, 0, 0) 68%);
    pointer-events: none;
}

.eo-hero-band__inner { position: relative; z-index: 1; text-align: center; }

.eo-hero-band__eyebrow {
    margin: 0 0 .85rem;
    font-size: clamp(.95rem, .85rem + .4vw, 1.2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.eo-hero-band__title {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 1.2rem + 3.6vw, 4rem);
    font-weight: 780;
    line-height: 1.06;
    letter-spacing: -.035em;
    color: #fff;
}

.eo-hero-band__title span {
    background: linear-gradient(100deg, #ffd870, var(--s-gold) 60%, #ffca3a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eo-hero-band__lead {
    max-width: 62ch;
    margin: 0 auto 1.9rem;
    font-size: clamp(.98rem, .9rem + .3vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .88);
}

.eo-hero-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .7rem;
    margin-bottom: clamp(2rem, 1.2rem + 3vw, 3.5rem);
}

/* Buttons ---------------------------------------------------------------- */

.eo-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .78rem 1.55rem;
    border-radius: 11px;
    border: 1px solid transparent;
    font-size: .95rem;
    font-weight: 680;
    line-height: 1;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.eo-btn:hover { transform: translateY(-2px); }

.eo-btn--gold {
    background: linear-gradient(100deg, #f5bd2e, var(--s-gold));
    color: #24190a !important;
    box-shadow: 0 6px 20px rgba(224, 161, 0, .34);
}

.eo-btn--gold:hover { box-shadow: 0 10px 28px rgba(224, 161, 0, .42); }

.eo-btn--ghost {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .38);
    color: #fff !important;
}

.eo-btn--ghost:hover { background: rgba(255, 255, 255, .2); }

.eo-btn--solid {
    background: var(--s-primary);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(11, 110, 79, .26);
}

.eo-btn--solid:hover { background: var(--s-primary-700); }

.eo-btn--quiet {
    background: transparent;
    border-color: var(--s-primary-100);
    color: var(--s-primary-700) !important;
}

.eo-btn--quiet:hover { background: var(--s-primary-050); }

.eo-btn:focus-visible { outline: 2px solid var(--s-gold); outline-offset: 3px; }

/* Trust strip ------------------------------------------------------------ */

.eo-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    max-width: 940px;
    margin: 0 auto;
    padding: 1.35rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.eo-stat { text-align: center; }

.eo-stat__num {
    display: block;
    font-size: clamp(1.3rem, 1rem + 1vw, 1.85rem);
    font-weight: 780;
    letter-spacing: -.02em;
    color: var(--s-gold);
    font-variant-numeric: tabular-nums;
}

.eo-stat__label {
    display: block;
    margin-top: .2rem;
    font-size: .8rem;
    font-weight: 620;
    color: rgba(255, 255, 255, .9);
    line-height: 1.3;
}

.eo-stat__label small {
    display: block;
    font-size: .68rem;
    font-weight: 550;
    color: rgba(255, 255, 255, .62);
    margin-top: .12rem;
}

/* --------------------------------------------------------------------------
   Split (image + text)
   -------------------------------------------------------------------------- */

.eo-split {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
    align-items: center;
}

.eo-split--reverse .eo-split__media { order: 2; }

.eo-split__media { position: relative; }

.eo-media-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--s-shadow-lg);
    border: 1px solid var(--s-line);
}

.eo-media-frame img { display: block; width: 100%; height: auto; }

.eo-media-badge {
    position: absolute;
    right: -14px;
    bottom: -14px;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--s-primary), var(--s-primary-700));
    color: #fff;
    box-shadow: 0 10px 26px rgba(11, 110, 79, .38);
    border: 4px solid #fff;
}

.eo-media-badge__num { font-size: 1.25rem; font-weight: 780; line-height: 1; }
.eo-media-badge__txt { font-size: .68rem; font-weight: 620; opacity: .85; }

.eo-split__body p { margin-bottom: .9rem; }

.eo-split__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.3rem; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.eo-cards { display: grid; gap: 1.15rem; }
.eo-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eo-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.eo-card {
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: var(--s-surface);
    border: 1px solid var(--s-line);
    box-shadow: var(--s-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.eo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--s-shadow);
    border-color: var(--s-primary-100);
}

.eo-card--flat:hover { transform: none; }

.eo-card__icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 15px;
    background: var(--s-primary-050);
    color: var(--s-primary);
    font-size: 1.6rem;
}

.eo-card__icon--gold { background: var(--s-gold-050); color: #a97800; }
.eo-card__icon img { max-width: 34px; height: auto; }

.eo-card__title {
    margin: 0 0 .5rem;
    font-size: 1.08rem;
    font-weight: 720;
    color: var(--s-ink);
}

.eo-card p { margin: 0; font-size: .93rem; }

/* --------------------------------------------------------------------------
   Product grid (the ten saving types)
   -------------------------------------------------------------------------- */

.eo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1rem;
}

.eo-tile {
    position: relative;
    padding: 1.45rem 1.25rem 1.3rem;
    border-radius: 15px;
    background: var(--s-surface);
    border: 1px solid var(--s-line);
    box-shadow: var(--s-shadow-sm);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.eo-tile::after {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--s-primary), var(--s-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.eo-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--s-shadow);
    border-color: var(--s-primary-100);
}

.eo-tile:hover::after { transform: scaleX(1); }

.eo-tile__n {
    display: block;
    margin-bottom: .55rem;
    font-size: .82rem;
    font-weight: 780;
    color: var(--s-gold);
    letter-spacing: .06em;
    font-variant-numeric: tabular-nums;
}

.eo-tile h3 {
    margin: 0 0 .28rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.32;
    color: var(--s-ink);
}

.eo-tile p { margin: 0; font-size: .81rem; color: var(--s-muted); font-weight: 600; }

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.eo-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: eostep;
    position: relative;
}

/* Connector between the three steps. */
.eo-steps::before {
    content: "";
    position: absolute;
    top: 26px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--s-primary-100) 0 8px, transparent 8px 16px);
}

.eo-step { position: relative; text-align: center; padding-top: 0; }

.eo-step__n {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 auto .9rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--s-primary), var(--s-primary-700));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 780;
    box-shadow: 0 6px 18px rgba(11, 110, 79, .3);
    border: 4px solid var(--s-tint);
}

.eo-step h3 { margin: 0 0 .35rem; font-size: 1.05rem; font-weight: 720; color: var(--s-ink); }
.eo-step p { margin: 0; font-size: .92rem; }

/* --------------------------------------------------------------------------
   Bullet list
   -------------------------------------------------------------------------- */

.eo-list { list-style: none; padding: 0; margin: 1rem 0 0; }

.eo-list li {
    position: relative;
    padding-left: 1.85rem;
    margin-bottom: .8rem;
    font-size: .97rem;
    font-weight: 600;
    color: var(--s-body);
}

.eo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .18em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--s-primary-050);
    border: 1px solid var(--s-primary-100);
}

.eo-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: .52em;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--s-primary);
    border-bottom: 2px solid var(--s-primary);
    transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Promotions band
   -------------------------------------------------------------------------- */

.eo-promo {
    background: linear-gradient(120deg, var(--s-primary-700) 0%, var(--s-primary) 62%, #12805d 100%) !important;
    border: 0;
}

.eo-promo__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 1rem + 2.5vw, 3rem);
    align-items: center;
}

.eo-promo__body .eo-h2 { margin-bottom: 1.25rem; }

.eo-promo__media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--s-shadow-lg);
    border: 4px solid rgba(255, 255, 255, .9);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.eo-contact {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
    gap: 1.25rem;
}

.eo-contact__card {
    padding: 1.9rem 1.75rem;
    border-radius: 18px;
    background: var(--s-surface);
    border: 1px solid var(--s-line);
    box-shadow: var(--s-shadow-sm);
}

.eo-contact__row {
    display: flex;
    gap: .95rem;
    align-items: flex-start;
    padding: .95rem 0;
    border-bottom: 1px solid var(--s-line);
}

.eo-contact__row:last-child { border-bottom: 0; padding-bottom: 0; }
.eo-contact__row:first-child { padding-top: 0; }

.eo-contact__ico {
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--s-primary-050);
    color: var(--s-primary);
    font-size: 1.1rem;
}

.eo-contact__label {
    display: block;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--s-muted);
    margin-bottom: .12rem;
}

.eo-contact__row p { margin: 0; font-weight: 620; color: var(--s-ink); }
.eo-contact__row a { color: var(--s-primary-700); font-weight: 680; }

.eo-contact__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: .6rem;
    padding: 1.9rem 1.75rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--s-primary-700), var(--s-primary));
    color: #fff;
    box-shadow: 0 14px 34px rgba(11, 110, 79, .28);
}

.eo-contact__cta h3 { margin: 0; font-size: 1.3rem; font-weight: 750; color: #fff; }
.eo-contact__cta p { margin: 0 0 .5rem; color: rgba(255, 255, 255, .85); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .eo-split,
    .eo-promo__inner,
    .eo-contact { grid-template-columns: 1fr; }
    .eo-split--reverse .eo-split__media { order: 0; }
    .eo-cards--3, .eo-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .eo-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .eo-steps { grid-template-columns: 1fr; gap: 1.25rem; }
    .eo-steps::before { display: none; }
    .eo-cards--3, .eo-cards--2 { grid-template-columns: 1fr; }
    .eo-media-badge { width: 74px; height: 74px; right: -8px; bottom: -8px; }
    .eo-contact__card, .eo-contact__cta { padding: 1.4rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    .eo-btn, .eo-card, .eo-tile, .eo-tile::after { transition: none !important; }
    .eo-btn:hover, .eo-card:hover, .eo-tile:hover { transform: none !important; }
}

/* ==========================================================================
   FOOTER — rebuilt
   Replaces the bolt-on "new_footer_area" component (bootstrap grid, wow.js
   fade-ins, animated cloud background, and its own blue/purple palette that
   matched nothing else on the page). This is a plain 4-column grid on the
   site's own tokens, with a dark ink panel and a gold rule.
   ========================================================================== */

.eo-footer {
    background: var(--s-ink, #0d1b14);
    color: #cfd8d2;
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 3px solid var(--s-accent, #E0A100);
}

.eo-footer__top {
    display: grid;
    gap: 2.5rem 2rem;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    padding-bottom: 2.75rem;
}

.eo-footer__logo img { height: 46px; width: auto; margin-bottom: 1rem; }

.eo-footer__about {
    font-size: .92rem;
    line-height: 1.85;
    color: #a9b7af;
    margin: 0 0 1.25rem;
    max-width: 46ch;
}

.eo-footer__social { display: flex; gap: .6rem; flex-wrap: wrap; }
.eo-footer__social a {
    width: 40px; height: 40px; border-radius: 11px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.eo-footer__social a:hover {
    background: var(--s-primary, #0b6e4f);
    border-color: var(--s-primary, #0b6e4f);
    transform: translateY(-2px);
}
.eo-footer__social img { width: 20px; height: 20px; filter: brightness(0) invert(1); opacity: .92; }

.eo-footer__h {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.1rem;
    position: relative;
    padding-bottom: .6rem;
}
.eo-footer__h::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 26px; height: 2px;
    background: var(--s-accent, #E0A100);
    border-radius: 2px;
}

.eo-footer__col ul { list-style: none; margin: 0; padding: 0; }
.eo-footer__col li + li { margin-top: .6rem; }
.eo-footer__col a {
    color: #a9b7af;
    font-size: .92rem;
    text-decoration: none;
    transition: color .16s ease, padding-left .16s ease;
}
.eo-footer__col a:hover { color: #fff; padding-left: 4px; }

.eo-footer__cta p { font-size: .9rem; line-height: 1.75; color: #a9b7af; margin: 0 0 1rem; }
.eo-footer__btn {
    display: block; text-align: center;
    padding: .7rem 1rem; border-radius: 10px;
    font-size: .9rem; font-weight: 650; text-decoration: none;
    background: var(--s-primary, #0b6e4f); color: #fff;
    border: 1px solid var(--s-primary, #0b6e4f);
    transition: filter .16s ease, background .16s ease;
}
.eo-footer__btn:hover { filter: brightness(1.12); color: #fff; }
.eo-footer__btn + .eo-footer__btn { margin-top: .6rem; }
.eo-footer__btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .22); color: #fff; }
.eo-footer__btn--ghost:hover { background: rgba(255, 255, 255, .08); }

.eo-footer__bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.eo-footer__bar p { margin: 0; font-size: .85rem; color: #8b9a92; }
.eo-footer__legal { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; }
.eo-footer__legal a { color: #8b9a92; font-size: .85rem; text-decoration: none; }
.eo-footer__legal a:hover { color: #fff; }

@media (max-width: 991.98px) {
    .eo-footer__top { grid-template-columns: 1fr 1fr; }
    .eo-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
    .eo-footer { padding-top: 2.75rem; }
    .eo-footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .eo-footer__bar { justify-content: flex-start; }
}

/* Section figure — the banner image above a section head. */
.eo-section-figure {
    margin: 0 0 2rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px -28px rgba(13, 27, 20, .5);
}
.eo-section-figure img { display: block; width: 100%; height: auto; }

/* --- Final-fixes pass -------------------------------------------------- */

/* Hero: image replaces the old stats strip */
.eo-hero-band__figure {
    margin: 2rem auto 0;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px -34px rgba(0, 0, 0, .55);
}
.eo-hero-band__figure img { display: block; width: 100%; height: auto; }

/* Office image dropped in where the 3-step section was — smaller, per brief */
.eo-section-figure--sm { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Contact: call-centre image replaces the CTA panel */
.eo-contact__figure { border-radius: 16px; overflow: hidden; }
.eo-contact__figure img { display: block; width: 100%; height: auto; }

/* Footer social: keep the brand marks in their own colours on a consistent
   light chip, instead of the inverted monochrome circles. */
.eo-footer__social a {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(255, 255, 255, .95);
}
.eo-footer__social a:hover { background: #fff; border-color: #fff; }
.eo-footer__social img { filter: none; opacity: 1; }

/* Two columns now that the savings list is gone */
@media (min-width: 992px) {
    .eo-footer__top { grid-template-columns: 1.8fr 1fr 1.2fr; }
}

/* ---- About section image only -------------------------------------------
   There are four .dff_border images on this page; only the About one sits in a
   col-md-4 next to a .margn text column. Everything here is scoped to that pair
   so the other sections are untouched.

   The row was already balanced: .margn puts margin-top:76px on the text column,
   so text(359)+76 == image column(435). The image only LOOKED taller because the
   text started 76px lower — hence the matching offset rather than a height hack.
   height:100% cannot work (the column takes its height from the image, so the
   percentage is circular); taking the image out of flow is what lets the flex row
   size from the text instead.

   object-position is top so the crop eats the bottom — the artwork's logo is at
   the top and centre-cropping cut it off. -------------------------------------- */
@media (min-width: 768px) {
    .row > .col-md-4:has(.dff_border) {
        position: relative;
        margin-top: 76px;
        min-height: 320px;
    }
    .row > .col-md-4:has(.dff_border) .dff_border {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        /* contain, not cover: cover was cropping ~half the source (768x1376 into a
           385x359 box) and hiding people's faces. contain shows the whole image —
           at this height it renders about 200px wide, which matches the source
           aspect, so nothing is cropped and nothing is distorted. */
        object-fit: contain;
        object-position: center;
    }
}

@supports not selector(:has(*)) {
    @media (min-width: 768px) {
        .col-md-4 > .dff_border {
            max-height: 560px;
            width: 100%;
            object-fit: contain;
            object-position: center;
        }
    }
}
