/* =========================================================
   Msingi Premium — lightbox, counters, gallery polish, reveals
   ========================================================= */

/* ---------- Scroll progress bar (top of page) ---------- */
.lux-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #6e1314 0%, #8b191b 50%, #b51e22 100%);
    z-index: 99999;
    pointer-events: none;
    transition: width 0.06s linear;
}

/* ---------- Gallery grid polish (used on project pages) ---------- */
.lux-gallery {
    margin: 0;
}
.lux-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
}
.lux-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1), filter 0.5s ease;
}
.lux-gallery__item:hover img {
    transform: scale(1.05);
    filter: brightness(1.06);
}
.lux-gallery__item::after {
    content: "⤢";
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.3s ease;
    backdrop-filter: blur(6px);
    pointer-events: none;
}
.lux-gallery__item:hover::after {
    opacity: 1;
    transform: scale(1);
    background: rgba(139,25,27,0.92);
}

/* ---------- Lightbox ---------- */
.lux-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
}
.lux-lightbox.is-open { display: flex; animation: luxFadeIn 0.35s ease; }
@keyframes luxFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lux-lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(8, 10, 13, 0.94);
    backdrop-filter: blur(12px);
}
.lux-lightbox__stage {
    position: relative;
    width: min(92vw, 1400px);
    height: min(86vh, 900px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}
.lux-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: opacity 0.35s ease;
}
.lux-lightbox__close,
.lux-lightbox__prev,
.lux-lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    user-select: none;
}
.lux-lightbox__close {
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}
.lux-lightbox__prev,
.lux-lightbox__next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    font-size: 22px;
}
.lux-lightbox__prev { left: 24px; }
.lux-lightbox__next { right: 24px; }
.lux-lightbox__close:hover,
.lux-lightbox__prev:hover,
.lux-lightbox__next:hover {
    background: rgba(139,25,27,0.95);
    border-color: rgba(244,201,93,0.55);
}
.lux-lightbox__prev:hover,
.lux-lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
.lux-lightbox__counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 3;
}
@media (max-width: 640px) {
    .lux-lightbox__close { top: 14px; right: 14px; width: 40px; height: 40px; }
    .lux-lightbox__prev { left: 10px; width: 44px; height: 44px; }
    .lux-lightbox__next { right: 10px; width: 44px; height: 44px; }
}

/* ---------- Scroll reveal ---------- */
.lux-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.lux-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
.lux-reveal[data-reveal-delay="100"] { transition-delay: 0.10s; }
.lux-reveal[data-reveal-delay="200"] { transition-delay: 0.20s; }
.lux-reveal[data-reveal-delay="300"] { transition-delay: 0.30s; }
.lux-reveal[data-reveal-delay="400"] { transition-delay: 0.40s; }
.lux-reveal[data-reveal-delay="500"] { transition-delay: 0.50s; }

/* ---------- Magnetic button base ---------- */
[data-magnetic] {
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}

/* ---------- "By the Numbers" — on-brand red + white, video visible ---------- */
.lux-numbers {
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: #2b0a0c;
}
.lux-numbers__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.85;
}
.lux-numbers::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(43,10,12,0.35) 0%, rgba(43,10,12,0.55) 100%),
        linear-gradient(135deg, rgba(139,25,27,0.45) 0%, rgba(110,19,20,0.30) 100%);
    z-index: 1;
    pointer-events: none;
}
.lux-numbers h1,
.lux-numbers h2,
.lux-numbers h3,
.lux-numbers h4,
.lux-numbers .subtitle,
.lux-numbers p {
    color: #fff;
}
.lux-numbers .subtitle {
    color: #f5f1ea !important;
}
.lux-numbers h2 {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-weight: 500;
}
.lux-numbers .lux-rule {
    margin-top: 22px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.6;
}
.lux-numbers__inner {
    position: relative;
    z-index: 2;
}
.lux-number {
    text-align: center;
    padding: 18px 12px;
    border-left: 1px solid rgba(255,255,255,0.12);
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.lux-number:first-child { border-left: none; }
.lux-number:hover { transform: translateY(-4px); }
.lux-number__value {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.lux-number__label {
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.85;
    font-weight: 700;
}
.lux-number__sub {
    margin-top: 8px;
    font-size: 12.5px;
    opacity: 0.75;
    font-weight: 400;
    line-height: 1.4;
}
.lux-number__sub a {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: border-color 0.3s ease;
}
.lux-number__sub a:hover { border-color: #ffffff; }
@media (max-width: 991px) {
    .lux-numbers { padding: 56px 0; }
    .lux-number { border-left: none; border-top: 1px solid rgba(255,255,255,0.10); padding: 24px 12px; }
    .lux-number:first-child { border-top: none; }
    .lux-number__value { font-size: 48px; }
    .lux-numbers h2 { font-size: 32px; }
}

/* ---------- Light card (sidebar on white-bg sections) ---------- */
.lux-card-light {
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(139,25,27,0.04) 0%, rgba(244,201,93,0.03) 100%);
    border: 1px solid rgba(0,0,0,0.08);
    border-left: 3px solid var(--msingi-red, #8b191b);
    border-radius: 4px;
    color: #15181b;
    position: relative;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.lux-card-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    border-left-color: #b51e22;
}
.lux-card-light__num {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--msingi-red, #8b191b);
    display: block;
    margin-bottom: 16px;
}
.lux-card-light__title {
    font-size: 24px;
    margin-bottom: 14px;
    color: #15181b !important;
    line-height: 1.25;
    font-weight: 500;
}
.lux-card-light__body {
    color: #4a4d52;
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 20px;
}
.lux-card-light__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.lux-card-light__tag {
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #4a4d52;
}

/* ---------- Logo polish ---------- */
header .logo img {
    max-height: 48px;
}

/* ---------- Mobile responsiveness polish — galleries, hero, spec strips, nav ---------- */
@media (max-width: 991px) {
    /* Gallery on tablet — tighten row gaps for richer rhythm */
    .lux-gallery { row-gap: 8px !important; }
    .lux-gallery [class*="col-"] { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 767px) {
    /* Gallery aspect ratio shifts to 4:3 on mobile and gap tightens */
    .lux-gallery__item img { aspect-ratio: 4 / 3; }
    .lux-gallery { row-gap: 6px !important; }
    .lux-gallery [class*="col-"] { padding-left: 3px; padding-right: 3px; }

    /* Hide hover zoom icon on touch — not useful, eats space */
    .lux-gallery__item::after { display: none; }
    .lux-gallery__item { cursor: pointer; }

    /* Spec strip on mobile — looser padding so two-column grid breathes */
    .spec-strip .service-tile { padding: 18px 8px !important; }
    .spec-strip h3 { font-size: 20px !important; }

    /* Service tile on mobile — smaller padding */
    .service-tile { padding: 28px 22px !important; }
    .service-tile h3 { font-size: 19px !important; }

    /* Page banner — reduce min-height so hero doesn't overwhelm */
    .page-banner { min-height: 50vh !important; }

    /* Project hero on mobile */
    .project-hero h1 { font-size: 32px !important; }

    /* Faraji feature stats on mobile — tighter */
    .faraji-stat { padding: 14px 10px !important; }
    .faraji-stat__num { font-size: 22px !important; }

    /* Subtitle keeps proportions */
    .subtitle { font-size: 10px !important; letter-spacing: 0.28em !important; }

    /* Inner content padding for project briefs */
    section { padding-top: 40px !important; padding-bottom: 40px !important; }
}
@media (max-width: 480px) {
    /* Tiny phones — single column gallery */
    .lux-gallery [class*="col-md-"] { flex: 0 0 100%; max-width: 100%; }
    .lux-gallery__item img { aspect-ratio: 3 / 2; }
}

/* Hero swiper on tablet — tighten controls */
@media (max-width: 991px) {
    .msingi-slider__prev,
    .msingi-slider__next { width: 44px; height: 44px; font-size: 14px; }
    .msingi-slider__caption h3 { font-size: 22px; }
}

/* Lightbox — make sure buttons stay tappable on mobile */
@media (max-width: 480px) {
    .lux-lightbox__stage { width: 96vw; height: 78vh; }
    .lux-lightbox__close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 20px; }
    .lux-lightbox__prev { left: 6px; width: 40px; height: 40px; }
    .lux-lightbox__next { right: 6px; width: 40px; height: 40px; }
    .lux-lightbox__counter { bottom: 16px; font-size: 10px; }
}

/* Faraji popup — even tighter on small phones */
@media (max-width: 480px) {
    .faraji-pop { padding: 12px; }
    .faraji-pop__media { min-height: 160px; }
    .faraji-pop__body { padding: 22px 20px; }
    .faraji-pop__title { font-size: 24px; }
    .faraji-pop__sub { font-size: 13px; margin-bottom: 18px; }
    .faraji-pop__stats { gap: 8px; margin-bottom: 18px; padding-bottom: 18px; }
    .faraji-pop__stat-num { font-size: 18px; }
    .faraji-pop__stat-lbl { font-size: 9px; }
    .faraji-pop__cta { padding: 12px 14px; font-size: 10px; }
    .faraji-pop__close { width: 32px; height: 32px; font-size: 16px; top: 10px; right: 10px; }
}

/* ---------- Faraji landing popup — sleek hero modal ---------- */
.faraji-pop {
    position: fixed;
    inset: 0;
    z-index: 9700;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.faraji-pop.is-open { display: flex; opacity: 1; }
.faraji-pop__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.faraji-pop__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 940px;
    background: #15080a;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.55s cubic-bezier(.2,.8,.2,1);
}
.faraji-pop.is-open .faraji-pop__card { transform: translateY(0) scale(1); }

.faraji-pop__media {
    position: relative;
    min-height: 460px;
    overflow: hidden;
}
.faraji-pop__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: farajiPopKenBurns 14s ease-in-out infinite alternate;
}
.faraji-pop__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%),
        linear-gradient(135deg, rgba(139,25,27,0.20) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}
.faraji-pop__chip {
    position: absolute;
    top: 22px; left: 22px;
    z-index: 2;
    background: rgba(139,25,27,0.95);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 22px rgba(139,25,27,0.45);
}
.faraji-pop__chip-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34,197,94,0.9);
    animation: farajiPopPulse 1.6s ease-in-out infinite;
}
.faraji-pop__media-caption {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    z-index: 2;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.88;
}

.faraji-pop__body {
    padding: 48px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.faraji-pop__eyebrow {
    font-size: 11px;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 14px;
}
.faraji-pop__title {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 500;
    margin: 0 0 14px;
}
.faraji-pop__sub {
    font-size: 14px;
    opacity: 0.72;
    line-height: 1.55;
    margin-bottom: 24px;
}
.faraji-pop__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.faraji-pop__stat {
    padding: 4px 0;
}
.faraji-pop__stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.faraji-pop__stat-lbl {
    font-size: 9.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    opacity: 0.55;
    font-weight: 600;
}
.faraji-pop__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.faraji-pop__cta {
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: #ffffff;
    color: #15080a;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.faraji-pop__cta:hover {
    background: #b51e22;
    color: #ffffff;
    transform: translateY(-2px);
}
.faraji-pop__cta--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.30);
}
.faraji-pop__cta--ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}
.faraji-pop__close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 5;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
}
.faraji-pop__close:hover {
    background: rgba(139,25,27,0.95);
    transform: scale(1.08);
}
.faraji-pop__dismiss {
    text-align: center;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.45;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.faraji-pop__dismiss:hover { opacity: 0.85; }

@keyframes farajiPopKenBurns {
    0%   { transform: scale(1.0) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1.5%, -1.5%); }
}
@keyframes farajiPopPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.75; }
}

@media (max-width: 800px) {
    .faraji-pop__card { grid-template-columns: 1fr; max-width: 460px; }
    .faraji-pop__media { min-height: 200px; aspect-ratio: 16/9; }
    .faraji-pop__body { padding: 30px 26px 26px; }
    .faraji-pop__title { font-size: 30px; }
    .faraji-pop__actions { flex-direction: column; }
    .faraji-pop__cta { width: 100%; }
}

/* ---------- Page banner — cap headline + strong overlay ---------- */
.page-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,8,10,0.55) 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner h1 {
    font-size: 64px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.015em !important;
    font-weight: 500 !important;
    max-width: 14ch;
}
@media (max-width: 1199px) { .page-banner h1 { font-size: 52px !important; } }
@media (max-width: 991px) { .page-banner h1 { font-size: 40px !important; max-width: 100%; } }
@media (max-width: 640px) { .page-banner h1 { font-size: 30px !important; } }
.page-banner .subtitle { color: #f5f1ea !important; opacity: 0.9; }

/* Cap project hero h1 the same way */
.project-hero h1 { font-size: 64px !important; line-height: 1.05 !important; }
@media (max-width: 991px) { .project-hero h1 { font-size: 40px !important; } }

/* ---------- Minimal-luxury typography & accents ---------- */
.fs-18 { font-size: 18px !important; }
.fs-22 { font-size: 22px !important; }
.fs-60 { font-size: 60px !important; }
@media (max-width: 991px) { .fs-60 { font-size: 38px !important; } }
@media (max-width: 640px) { .fs-60 { font-size: 30px !important; } }

/* Premium hero & section subtitles — small caps with em-dash prefix */
.subtitle {
    font-size: 11px !important;
    letter-spacing: 0.32em !important;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
}

/* Larger msingi quote — premium serif vibe */
.msingi-quote {
    font-size: 32px !important;
    line-height: 1.3 !important;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-style: italic;
}
@media (max-width: 767px) { .msingi-quote { font-size: 22px !important; } }

/* Vertical accent rule helper */
.lux-vrule {
    display: inline-block;
    width: 1px;
    height: 80px;
    background: rgba(255,255,255,0.35);
    margin: 0 auto;
}
.lux-vrule--light { background: rgba(0,0,0,0.15); }

/* Tighter section padding for "sleek" feel */
section { padding-top: 64px; padding-bottom: 64px; }
@media (max-width: 991px) { section { padding-top: 48px; padding-bottom: 48px; } }
section.no-top { padding-top: 0 !important; }
section.no-bottom { padding-bottom: 0 !important; }
section.p-0 { padding: 0 !important; }

/* ---------- Compact spacing — used to tighten verbose sections ---------- */
.lux-tight { padding-top: 60px !important; padding-bottom: 60px !important; }
.lux-tight-y { padding-top: 40px !important; padding-bottom: 40px !important; }
.lux-tight h2 { margin-bottom: 16px; }
.lux-tight p { margin-bottom: 12px; }

/* ---------- Global tightening — reduce section padding & blank space site-wide ---------- */
section:not(.page-banner):not(.project-hero):not(.lux-numbers):not(.no-top):not(.no-bottom):not(.section-dark.jarallax):not(.bg-dark.text-center) {
    padding-top: 72px;
    padding-bottom: 72px;
}
@media (max-width: 991px) {
    section:not(.page-banner):not(.project-hero):not(.lux-numbers):not(.no-top):not(.no-bottom):not(.section-dark.jarallax):not(.bg-dark.text-center) {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}
.spacer-double { display: none !important; } /* template's huge spacer */
.spacer-single { height: 18px !important; } /* template's smaller spacer */

/* Tighten h2 default rhythm */
h2 + p, h2 + .row, .subtitle + h2 { margin-top: 12px; }

/* Hero text padding floor (so hero overlays aren't squashed at small heights) */
section.jarallax.mh-800 { min-height: 720px; }
@media (max-width: 991px) { section.jarallax.mh-800 { min-height: 560px; } }
@media (max-width: 640px) { section.jarallax.mh-800 { min-height: 480px; } }

/* Smoother fade for service tile cards */
.service-tile { transition: border-color 0.4s ease, transform 0.4s ease; }
.service-tile:hover { transform: translateY(-3px); }


/* ---------- Sectional dividers — premium gold rule ---------- */
.lux-rule {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto;
    opacity: 0.7;
}
.lux-rule--start { margin-left: 0; }
