/* ============================================================
   Nehes Israel — Preview CSS (Kitchor-inspired, brand-applied)
   Editorial premium aesthetic. Navy + Gold. RTL Hebrew.

   MOBILE-FIRST BREAKPOINTS (use only these in @media min-width):
     xs:  0-479px    small phones (baseline, no media query)
     sm:  480px+     large phones
     md:  768px+     tablets portrait
     lg:  1024px+    small desktop
     xl:  1280px+    desktop wide

   Rule of thumb: base styles work on 360px. Enhancements grow up.
   Verified targets: Galaxy 360, iPhone SE 375, iPhone 14 Pro 393, iPad 768.
   ============================================================ */

:root {
    --ni-navy-900: #0A1530;
    --ni-navy-800: #0F1B3A;
    --ni-navy-700: #122347;
    --ni-navy-500: #1E3260;
    --ni-navy-300: #3D5A8A;

    --ni-gold:        #C9A961;
    --ni-gold-light:  #E8D49B;
    --ni-gold-dark:   #B89248;
    --ni-gold-deep:   #8B6F2C;

    --ni-ink:        #0A0E1A;
    --ni-graphite:   #2A2F3A;
    --ni-stone:      #E5E0D5;
    --ni-cream:      #F5F2EB;
    --ni-paper:      #FAF8F3;
    --ni-white:      #FFFFFF;

    --ni-gold-gradient: linear-gradient(135deg, #C9A961 0%, #E8D49B 50%, #B89248 100%);

    --ni-font-display: 'Rubik', 'Heebo', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
    --ni-font-body: 'Heebo', 'Rubik', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

    --ni-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ni-ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --ni-container: 1320px;
}

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

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; direction: rtl; }
body {
    margin: 0;
    font-family: var(--ni-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ni-ink);
    background: var(--ni-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 250ms var(--ni-ease-smooth); }
button { font-family: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ni-font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; color: var(--ni-ink); }
p { margin: 0 0 1em 0; }

.skip-link { position: absolute; top: -100px; right: 1rem; background: var(--ni-navy-900); color: var(--ni-gold); padding: 12px 20px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--ni-gold); outline-offset: 4px; }
::selection { background: var(--ni-gold); color: var(--ni-navy-900); }

.container { width: 100%; max-width: var(--ni-container); margin: 0 auto; padding-inline: 24px; }
@media (min-width: 768px) { .container { padding-inline: 40px; } }
@media (min-width: 1200px) { .container { padding-inline: 60px; } }

.section { padding-block: clamp(48px, 10vw, 140px); position: relative; }
.section--cream { background: var(--ni-cream); color: var(--ni-ink); }
.section--paper { background: var(--ni-paper); color: var(--ni-ink); }
.section--navy { background: var(--ni-navy-700); color: var(--ni-cream); }
.section--navy-deep { background: var(--ni-navy-900); color: var(--ni-cream); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.section--navy-deep h1, .section--navy-deep h2, .section--navy-deep h3, .section--navy-deep h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.project-hero h1, .project-hero h2, .project-hero h3, .project-hero h4,
.hero h1, .hero h2, .hero h3, .hero h4,
.cta-final h1, .cta-final h2, .cta-final h3, .cta-final h4 { color: var(--ni-cream); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--ni-font-body);
    font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
    color: var(--ni-gold);
    margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--ni-gold); }

.display-1 { font-size: clamp(30px, 8vw, 86px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(24px, 6vw, 60px); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
.display-3 { font-size: clamp(22px, 5vw, 44px); font-weight: 600; line-height: 1.2; }
.display-1 em, .display-2 em, .display-3 em { font-style: italic; font-weight: 400; background: var(--ni-gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }

.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.7; color: var(--ni-graphite); max-width: 60ch; }
.section--navy .lead, .section--navy-deep .lead { color: rgba(245, 242, 235, 0.78); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 36px; font-family: var(--ni-font-body); font-weight: 600; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid transparent; cursor: pointer; transition: all 350ms var(--ni-ease-out); text-decoration: none; position: relative; overflow: hidden; }
.btn--gold { background: var(--ni-gold-gradient); color: var(--ni-navy-900); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,97,0.3); color: var(--ni-navy-900); }
.btn--ghost { background: transparent; border-color: rgba(245,242,235,0.4); color: var(--ni-cream); }
.btn--ghost:hover { background: var(--ni-cream); color: var(--ni-navy-900); border-color: var(--ni-cream); }
.btn--ghost-dark { background: transparent; border-color: var(--ni-navy-700); color: var(--ni-navy-700); }
.btn--ghost-dark:hover { background: var(--ni-navy-700); color: var(--ni-cream); }
.btn--text { padding: 0; background: transparent; color: var(--ni-gold-deep); font-weight: 700; font-size: 13px; letter-spacing: 2px; border-bottom: 1px solid var(--ni-gold-deep); padding-bottom: 4px; text-transform: uppercase; }
.btn--text:hover { color: var(--ni-gold); border-bottom-color: var(--ni-gold); }
.section--navy .btn--text, .section--navy-deep .btn--text { color: var(--ni-gold); border-bottom-color: var(--ni-gold); }

/* ===== Topbar — MOBILE-FIRST ===== */
.topbar { background: var(--ni-navy-900); color: rgba(245, 242, 235, 0.7); padding-block: 8px; font-size: 11.5px; border-bottom: 1px solid rgba(201, 169, 97, 0.1); }
.topbar__inner { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; row-gap: 4px; text-align: center; }
.topbar__contact { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.topbar__contact a { display: inline-flex; gap: 5px; align-items: center; color: inherit; white-space: nowrap; }
.topbar__contact a:hover { color: var(--ni-gold); }
.topbar__contact svg { width: 12px; height: 12px; color: var(--ni-gold); }
.topbar__meta { font-size: 10.5px; letter-spacing: 0.5px; color: rgba(245,242,235,0.5); display: none; }
@media (min-width: 480px) {
    .topbar__meta { display: block; }
}
@media (min-width: 768px) {
    .topbar { padding-block: 10px; font-size: 13px; }
    .topbar__inner { justify-content: space-between; gap: 16px; text-align: start; }
    .topbar__contact { gap: 24px; }
    .topbar__contact a { gap: 6px; }
    .topbar__contact svg { width: 14px; height: 14px; }
    .topbar__meta { font-size: 12px; letter-spacing: 1px; }
}

/* ===== Navbar ===== */
.navbar { position: fixed; inset-inline: 0; z-index: 100; padding-block: 12px; transition: background-color 350ms var(--ni-ease-smooth), padding 350ms var(--ni-ease-smooth); top: 0; }
@media (min-width: 480px) { .navbar { padding-block: 16px; } }
@media (min-width: 1024px) { .navbar { padding-block: 24px; } }
/* Topbar height varies between mobile (~30px) and desktop (40px) */
.navbar.has-topbar { top: 32px; }
@media (min-width: 768px) { .navbar.has-topbar { top: 40px; } }
/* On mobile keep a solid background even when desktop state is "transparent" — hero content must not bleed through */
.navbar[data-state="transparent"] { background: rgba(10, 21, 48, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
@media (min-width: 1024px) {
    .navbar[data-state="transparent"] { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.navbar[data-state="solid"] { background: rgba(10, 21, 48, 0.96); padding-block: 14px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(201, 169, 97, 0.15); top: 0; }
@media (min-width: 768px) { .navbar[data-state="solid"] { padding-block: 14px; } }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.navbar__logo { font-family: var(--ni-font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.01em; background: var(--ni-gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
/* ========== MOBILE NAVBAR (BASE) — FULL-SCREEN OVERLAY MENU ========== */

/* The menu is invisible by default. When body has is-menu-open, it becomes a full-screen overlay. */
.navbar__menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.is-menu-open .navbar__menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 92px 24px 40px !important;
    position: fixed !important;
    top: 0 !important;
    inset-inline-start: 0 !important;
    inset-inline-end: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(160deg, #0A1530 0%, #122347 100%) !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    animation: navMenuIn 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes navMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
body.is-menu-open .navbar__menu > li {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201,169,97,0.15);
}
body.is-menu-open .navbar__menu > li:first-child { padding-top: 8px; }
body.is-menu-open .navbar__menu > li:last-child { border-bottom: 0; }

.navbar__link {
    color: var(--ni-cream);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding-block: 4px;
    display: inline-block;
}
.navbar__link::after { content: ''; position: absolute; bottom: 0; inset-inline-end: 0; width: 0; height: 1px; background: var(--ni-gold); transition: width 300ms var(--ni-ease-out); }
.navbar__link:hover, .navbar__link.is-current { color: var(--ni-gold); }
.navbar__link:hover::after, .navbar__link.is-current::after { width: 100%; }

/* Mobile open state — large premium links */
body.is-menu-open .navbar__link {
    font-family: 'Frank Ruhl Libre', Georgia, var(--ni-font-display, serif);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--ni-cream);
    display: block;
}
body.is-menu-open .navbar__link::after { content: none; }
body.is-menu-open .navbar__link:hover,
body.is-menu-open .navbar__link.is-current { color: var(--ni-gold); }

/* Hamburger button (above the overlay so it doubles as close button) */
.navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px; height: 36px;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}
.navbar__hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: var(--ni-cream);
    margin-inline-start: auto;
    transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.navbar__cta { display: none; }

body.is-menu-open { overflow: hidden; }
body.is-menu-open .navbar { z-index: 1000 !important; background: transparent !important; }
body.is-menu-open .navbar__hamburger span { background: var(--ni-gold); }
body.is-menu-open .navbar__hamburger span:nth-child(1) { transform: translate(0, 8px) rotate(45deg); }
body.is-menu-open .navbar__hamburger span:nth-child(2) { opacity: 0; }
body.is-menu-open .navbar__hamburger span:nth-child(3) { transform: translate(0, -8px) rotate(-45deg); }
/* Hide topbar when mobile menu is open so it doesn't peek on top */
body.is-menu-open .topbar { display: none !important; }

/* ========== DESKTOP NAVBAR (1024+) ========== */
@media (min-width: 1024px) {
    .navbar__menu {
        flex-direction: row;
        gap: 36px;
        position: static;
        inset: auto;
        background: transparent;
        transform: none;
        transition: none;
        z-index: auto;
        padding: 0;
        overflow: visible;
    }
    .navbar__menu::before { content: none; }
    .navbar__menu > li { max-width: none; text-align: start; padding-bottom: 0; border-bottom: 0; width: auto; }
    .navbar__link {
        font-family: var(--ni-font-body);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        display: inline-block;
    }
    .navbar__link::after { content: ''; position: absolute; bottom: 0; inset-inline-end: 0; width: 0; height: 1px; background: var(--ni-gold); transition: width 300ms var(--ni-ease-out); }
    .navbar__link:hover::after, .navbar__link.is-current::after { width: 100%; }
    .navbar__cta { display: inline-flex; padding: 12px 28px; }
    .navbar__hamburger { display: none; }
}

/* ===== Hero — Home ===== */
.hero { position: relative; min-height: 100vh; padding-top: 160px; padding-bottom: 80px; background: linear-gradient(135deg, #0A1530 0%, #122347 60%, #0F1B3A 100%); color: var(--ni-cream); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(201,169,97,0.18) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(201,169,97,0.10) 0%, transparent 50%), radial-gradient(ellipse at 50% 100%, rgba(30,50,96,0.4) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,169,97,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,97,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; opacity: 0.4; }
.hero__inner { position: relative; z-index: 1; display: grid; gap: 60px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.hero__text { max-width: 720px; }
.hero__title { color: var(--ni-cream); margin-bottom: 24px; }
.hero__title em { font-style: italic; font-weight: 400; background: var(--ni-gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(15px, 1.3vw, 17px); line-height: 1.8; color: rgba(245, 242, 235, 0.78); margin-bottom: 36px; max-width: 56ch; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__visual { position: relative; aspect-ratio: 4/5; background: linear-gradient(145deg, rgba(201,169,97,0.4) 0%, rgba(184,146,72,0.2) 50%, rgba(10,21,48,0.6) 100%), linear-gradient(135deg, #1E3260 0%, #122347 100%); box-shadow: 0 50px 100px rgba(0,0,0,0.45); }
.hero__visual::after { content: ''; position: absolute; inset: -8px; border: 1px solid rgba(201, 169, 97, 0.35); pointer-events: none; }
.hero__visual-badge { position: absolute; bottom: -30px; inset-inline-end: -30px; width: 160px; height: 160px; background: var(--ni-gold-gradient); color: var(--ni-navy-900); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 16px; font-family: var(--ni-font-display); border-radius: 50%; }
.hero__visual-badge .num { font-size: 42px; font-weight: 700; line-height: 1; }
.hero__visual-badge .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-family: var(--ni-font-body); }
.hero__features { margin-top: 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 36px; border-top: 1px solid rgba(201, 169, 97, 0.2); }
@media (min-width: 768px) { .hero__features { grid-template-columns: repeat(4, 1fr); } }
.hero__feature .n { display: block; font-family: var(--ni-font-display); font-size: 38px; font-weight: 700; color: var(--ni-gold); line-height: 1; }
.hero__feature .lbl { display: block; margin-top: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(245, 242, 235, 0.7); }

/* ===== Marquee ===== */
.marquee { background: var(--ni-navy-900); color: var(--ni-cream); padding-block: clamp(20px, 5vw, 28px); overflow: hidden; border-block: 1px solid rgba(201, 169, 97, 0.2); }
.marquee__track { display: flex; gap: clamp(28px, 8vw, 60px); white-space: nowrap; animation: marquee-scroll 32s linear infinite; font-family: var(--ni-font-display); font-size: clamp(20px, 5vw, 48px); font-weight: 400; font-style: italic; align-items: center; }
.marquee__track span { color: rgba(245, 242, 235, 0.4); }
.marquee__track span.gold { color: var(--ni-gold); }
.marquee__track .dot { display: inline-block; width: 8px; height: 8px; background: var(--ni-gold); border-radius: 50%; }
@keyframes marquee-scroll { from { transform: translateX(100%); } to { transform: translateX(-100%); } }

/* ===== About split ===== */
.about { display: grid; gap: 60px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .about { grid-template-columns: 1fr 1.1fr; gap: 80px; } }
.about__media { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(10,21,48,0.7), transparent 60%), linear-gradient(45deg, #1E3260 0%, #122347 100%); }
.about__media::before { content: ''; position: absolute; inset: 20px; border: 1px solid var(--ni-gold); opacity: 0.4; }
.about__media-meta { position: absolute; bottom: clamp(16px, 4vw, 32px); inset-inline-end: clamp(16px, 4vw, 32px); background: var(--ni-cream); padding: clamp(18px, 5vw, 28px) clamp(20px, 5vw, 32px); max-width: clamp(200px, 65%, 280px); }
.about__media-meta .big { font-family: var(--ni-font-display); font-size: clamp(40px, 11vw, 60px); font-weight: 700; line-height: 1; color: var(--ni-navy-900); }
.about__media-meta .lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ni-graphite); margin-top: 6px; }
.about__pillars { margin-top: 36px; display: grid; gap: 18px; }
.about__pillar { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; }
.about__pillar-num { width: 56px; height: 56px; background: var(--ni-navy-700); color: var(--ni-gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ni-font-display); font-weight: 700; font-size: 18px; }
.about__pillar h4 { font-family: var(--ni-font-display); font-weight: 600; font-size: 18px; margin-bottom: 4px; color: var(--ni-navy-900); }
.about__pillar p { font-size: 14px; line-height: 1.6; color: var(--ni-graphite); margin: 0; }

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--ni-gold); }

/* ===== Process steps ===== */
.process { display: grid; gap: 32px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 768px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process__step { position: relative; padding: 40px 32px 36px; background: var(--ni-paper); border: 1px solid var(--ni-stone); transition: all 400ms var(--ni-ease-out); }
.process__step:hover { border-color: var(--ni-gold); transform: translateY(-4px); box-shadow: 0 30px 60px rgba(10, 21, 48, 0.08); }
.process__step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 28px; inset-inline-end: 28px; font-family: var(--ni-font-display); font-size: 64px; font-weight: 700; color: var(--ni-stone); line-height: 1; transition: color 400ms var(--ni-ease-out); }
.process__step:hover::before { color: var(--ni-gold); }
.process__step-icon { width: 56px; height: 56px; background: var(--ni-navy-700); color: var(--ni-gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.process__step h4 { font-family: var(--ni-font-display); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.process__step p { font-size: 14px; line-height: 1.6; color: var(--ni-graphite); margin: 0; }

/* ===== Project grid (cards) ===== */
.projects-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card { position: relative; overflow: hidden; background: var(--ni-navy-700); aspect-ratio: 3/4; cursor: pointer; display: block; }
.project-card__img { position: absolute; inset: 0; transition: transform 800ms var(--ni-ease-out); }
.project-card--c1 .project-card__img { background: linear-gradient(160deg, rgba(10,21,48,0.6) 0%, rgba(30,50,96,0.4) 60%, rgba(201,169,97,0.30) 100%), var(--ni-navy-700); }
.project-card--c2 .project-card__img { background: linear-gradient(200deg, rgba(184,146,72,0.30) 0%, rgba(10,21,48,0.7) 50%, rgba(30,50,96,0.4) 100%), var(--ni-navy-700); }
.project-card--c3 .project-card__img { background: linear-gradient(45deg, rgba(10,21,48,0.8) 0%, rgba(201,169,97,0.20) 80%, rgba(30,50,96,0.4) 100%), var(--ni-navy-700); }
.project-card--c4 .project-card__img { background: linear-gradient(135deg, rgba(30,50,96,0.5) 0%, rgba(10,21,48,0.7) 60%, rgba(201,169,97,0.25) 100%), var(--ni-navy-700); }
.project-card--c5 .project-card__img { background: linear-gradient(225deg, rgba(201,169,97,0.30) 0%, rgba(10,21,48,0.6) 60%, rgba(30,50,96,0.4) 100%), var(--ni-navy-700); }
.project-card--c6 .project-card__img { background: linear-gradient(160deg, rgba(30,50,96,0.4) 0%, rgba(201,169,97,0.20) 50%, rgba(10,21,48,0.7) 100%), var(--ni-navy-700); }
.project-card:hover .project-card__img { transform: scale(1.08); }
.project-card__overlay { position: absolute; inset-inline: 0; bottom: 0; padding: 28px 28px 32px; color: var(--ni-cream); background: linear-gradient(180deg, transparent 0%, rgba(10,21,48,0.95) 80%); transition: all 500ms var(--ni-ease-out); }
.project-card__category { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ni-gold); margin-bottom: 8px; display: block; }
.project-card__title { font-family: var(--ni-font-display); font-size: 28px; font-weight: 700; line-height: 1.1; color: var(--ni-cream); margin-bottom: 16px; }
.project-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(245, 242, 235, 0.75); padding-top: 16px; border-top: 1px solid rgba(245, 242, 235, 0.2); }
.project-card__meta-arrow { color: var(--ni-gold); }
.project-card__badge { position: absolute; top: 20px; inset-inline-end: 20px; padding: 6px 14px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--ni-gold); color: var(--ni-navy-900); }
.project-card__badge--sold { background: transparent; border: 1px solid var(--ni-gold); color: var(--ni-gold); }
.project-card__badge--coming { background: transparent; border: 1px solid rgba(245,242,235,0.5); color: var(--ni-cream); }

/* ===== Why us ===== */
.why { display: grid; gap: 60px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .why { grid-template-columns: 1fr 1fr; gap: 80px; } }
.why__features { display: grid; gap: 4px; }
.why__feature { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(201, 169, 97, 0.2); align-items: center; transition: all 350ms var(--ni-ease-out); }
.why__feature:last-child { border-bottom: none; }
.why__feature:hover { padding-inline-start: 12px; }
.why__feature-num { font-family: var(--ni-font-display); font-size: 48px; font-weight: 700; color: var(--ni-gold); line-height: 1; }
.why__feature h4 { font-family: var(--ni-font-display); font-weight: 700; font-size: 22px; margin-bottom: 4px; color: var(--ni-cream); }
.why__feature p { margin: 0; font-size: 14px; color: rgba(245, 242, 235, 0.7); }
.why__feature-arrow { color: var(--ni-gold); font-size: 24px; opacity: 0; transition: opacity 350ms; }
.why__feature:hover .why__feature-arrow { opacity: 1; }
.why__visual { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, #1E3260 0%, #0A1530 100%); }
.why__visual::after { content: ''; position: absolute; inset: 20px; border: 1px solid var(--ni-gold); opacity: 0.3; }
.why__visual-quote { position: absolute; inset-inline-end: -40px; bottom: 60px; max-width: 360px; padding: 32px 36px; background: var(--ni-gold); color: var(--ni-navy-900); }
.why__visual-quote p { font-family: var(--ni-font-display); font-size: 22px; font-weight: 500; line-height: 1.35; margin: 0; }
.why__visual-quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ni-navy-700); }

/* ===== Stats ===== */
.stats { display: grid; gap: 0; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats__cell { text-align: center; padding: 36px 16px; border-inline-start: 1px solid rgba(201, 169, 97, 0.18); }
.stats__cell:first-child { border: none; }
.stats__cell:nth-child(odd) { border: none; }
@media (min-width: 768px) { .stats__cell:nth-child(odd) { border-inline-start: 1px solid rgba(201, 169, 97, 0.18); } .stats__cell:first-child { border: none; } }
.stats__num { display: block; font-family: var(--ni-font-display); font-size: clamp(46px, 6vw, 80px); font-weight: 700; line-height: 1; background: var(--ni-gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-feature-settings: "lnum" 1, "tnum" 1; margin-bottom: 10px; }
.stats__lbl { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(245, 242, 235, 0.7); }

/* ===== Team ===== */
.team-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { position: relative; }
.team-card__photo { aspect-ratio: 4/5; background: linear-gradient(180deg, rgba(10,21,48,0.0) 0%, rgba(10,21,48,0.4) 100%), linear-gradient(135deg, #1E3260 0%, #122347 100%); position: relative; overflow: hidden; }
.team-card__photo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(201,169,97,0.20), transparent 60%); }
.team-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,21,48,0.92) 30%, transparent 80%); opacity: 0; transition: opacity 400ms var(--ni-ease-out); padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--ni-cream); }
.team-card:hover .team-card__overlay { opacity: 1; }
.team-card__bio { font-size: 13px; line-height: 1.6; color: rgba(245,242,235,0.85); margin-bottom: 16px; }
.team-card__socials { display: flex; gap: 12px; }
.team-card__socials a { width: 36px; height: 36px; border: 1px solid var(--ni-gold); color: var(--ni-gold); display: inline-flex; align-items: center; justify-content: center; transition: all 250ms; }
.team-card__socials a:hover { background: var(--ni-gold); color: var(--ni-navy-900); }
.team-card__info { padding-top: 20px; }
.team-card__name { font-family: var(--ni-font-display); font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.team-card__role { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ni-gold-deep); }
.section--navy .team-card__name, .section--navy-deep .team-card__name { color: var(--ni-cream); }
.section--navy .team-card__role, .section--navy-deep .team-card__role { color: var(--ni-gold); }

/* ===== Testimonial ===== */
.testimonial { max-width: 920px; margin-inline: auto; text-align: center; }
.testimonial__mark { font-family: var(--ni-font-display); font-size: 120px; line-height: 0.6; color: var(--ni-gold); margin-bottom: 16px; display: block; }
.testimonial__text { font-family: var(--ni-font-display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.4; color: var(--ni-cream); margin-bottom: 36px; }
.testimonial__attr { display: inline-flex; flex-direction: column; gap: 4px; align-items: center; }
.testimonial__attr .name { font-family: var(--ni-font-display); font-size: 18px; font-weight: 700; color: var(--ni-gold); }
.testimonial__attr .role { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,242,235,0.6); }

/* ===== Blog cards ===== */
.blog-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--ni-paper); transition: transform 350ms var(--ni-ease-out); border: 1px solid var(--ni-stone); }
.blog-card:hover { transform: translateY(-4px); border-color: var(--ni-gold); }
.blog-card__img { aspect-ratio: 3/2; background: linear-gradient(135deg, rgba(201,169,97,0.2), transparent 60%), linear-gradient(45deg, #1E3260 0%, #122347 100%); }
.blog-card__body { padding: 28px; }
.blog-card__date { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ni-gold-deep); margin-bottom: 12px; display: block; }
.blog-card__title { font-family: var(--ni-font-display); font-size: 22px; font-weight: 700; margin: 0 0 14px; line-height: 1.25; }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--ni-gold-deep); }
.blog-card__excerpt { font-size: 14px; color: var(--ni-graphite); line-height: 1.7; margin: 0 0 16px; }
.blog-card__more { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ni-gold-deep); }

/* ===== CTA Final ===== */
.cta-final { position: relative; text-align: center; background: linear-gradient(135deg, #0A1530 0%, #122347 100%); color: var(--ni-cream); overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,169,97,0.12) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(201,169,97,0.08) 0%, transparent 50%); }
.cta-final__inner { position: relative; max-width: 800px; margin-inline: auto; padding-inline: 24px; }
.cta-final__title { font-size: clamp(28px, 8vw, 68px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ni-cream); margin-bottom: 22px; font-family: var(--ni-font-display); }
.cta-final__title em { font-style: italic; font-weight: 400; color: var(--ni-gold); }
.cta-final__sub { font-size: clamp(15px, 4vw, 18px); color: rgba(245,242,235,0.75); margin-bottom: 28px; max-width: 56ch; margin-inline: auto; }
@media (min-width: 768px) { .cta-final__title { margin-bottom: 28px; } .cta-final__sub { margin-bottom: 36px; } }
.cta-final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer — MOBILE-FIRST ===== */
.footer { background: var(--ni-navy-900); color: rgba(245, 242, 235, 0.7); padding-block: clamp(48px, 12vw, 80px) 30px; }
.footer__cols { display: grid; gap: 32px; grid-template-columns: 1fr; padding-bottom: clamp(32px, 8vw, 50px); border-bottom: 1px solid rgba(201, 169, 97, 0.15); }
@media (min-width: 480px) { .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 768px) { .footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; } }
.footer__brand-logo { font-family: var(--ni-font-display); font-size: 28px; font-weight: 700; background: var(--ni-gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.footer__tagline { font-family: var(--ni-font-display); font-size: 17px; line-height: 1.5; color: rgba(245,242,235,0.85); margin-bottom: 24px; max-width: 32ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(201,169,97,0.4); color: var(--ni-gold); display: inline-flex; align-items: center; justify-content: center; transition: all 250ms; }
.footer__social a:hover { background: var(--ni-gold); color: var(--ni-navy-900); }
.footer__heading { font-family: var(--ni-font-body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ni-gold); margin-bottom: 22px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer__links a:hover { color: var(--ni-gold); }
.footer__contact { font-size: 14px; line-height: 1.8; }
.footer__contact a { color: inherit; }
.footer__contact a:hover { color: var(--ni-gold); }
.footer__bottom { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(201, 169, 97, 0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(245,242,235,0.55); }
.footer__bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom-links a:hover { color: var(--ni-gold); }
.footer__disclaimer { font-size: 11px; line-height: 1.6; color: rgba(245,242,235,0.4); margin: 20px auto 0; max-width: 80ch; text-align: center; }

/* ===== WhatsApp Floater ===== */
.wa-floater { position: fixed; bottom: 24px; inset-inline-start: 24px; width: 56px; height: 56px; background: var(--ni-gold-gradient); color: var(--ni-navy-900); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px rgba(10, 21, 48, 0.4); z-index: 90; opacity: 0; transform: translateY(20px); transition: opacity 400ms var(--ni-ease-out), transform 400ms var(--ni-ease-out); }
.wa-floater.is-visible { opacity: 1; transform: translateY(0); }
.wa-floater:hover { transform: translateY(-3px); color: var(--ni-navy-900); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1000ms var(--ni-ease-out), transform 1000ms var(--ni-ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.preview-banner { position: fixed; bottom: 24px; inset-inline-end: 24px; background: rgba(10, 21, 48, 0.95); color: var(--ni-gold); padding: 10px 20px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; z-index: 95; border: 1px solid var(--ni-gold); }

/* ===== Page hero (inner) ===== */
.page-hero { position: relative; padding: clamp(130px, 28vw, 220px) 0 clamp(48px, 12vw, 100px); background: linear-gradient(135deg, #0A1530 0%, #122347 100%); color: var(--ni-cream); text-align: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(201,169,97,0.15) 0%, transparent 60%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero__breadcrumbs { display: flex; gap: 8px; justify-content: center; margin-top: 24px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(245, 242, 235, 0.6); }
.page-hero__breadcrumbs a { color: inherit; }
.page-hero__breadcrumbs a:hover { color: var(--ni-gold); }
.page-hero__breadcrumbs .sep { color: var(--ni-gold); }

/* ===== Filter bar ===== */
.filter-bar { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; padding: 28px 0; margin-bottom: 40px; border-bottom: 1px solid var(--ni-stone); }
.filter-bar__label { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--ni-graphite); }
.filter-bar__buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 10px 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--ni-graphite); background: transparent; border: 1px solid var(--ni-stone); transition: all 250ms var(--ni-ease-out); }
.filter-btn:hover { color: var(--ni-navy-900); border-color: var(--ni-gold-deep); }
.filter-btn.is-active { background: var(--ni-navy-700); color: var(--ni-cream); border-color: var(--ni-navy-700); }
.filter-count { margin-inline-start: auto; font-size: 13px; color: var(--ni-graphite); }

/* ===== Single project ===== */
.project-hero { position: relative; padding: 200px 0 80px; background: linear-gradient(135deg, rgba(10,21,48,0.85) 0%, rgba(10,21,48,0.55) 50%, rgba(18,35,71,0.85) 100%), linear-gradient(45deg, #1E3260 0%, #122347 100%); color: var(--ni-cream); }
.project-hero__inner { display: grid; gap: 60px; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 1024px) { .project-hero__inner { grid-template-columns: 2fr 1fr; gap: 80px; } }
.project-hero__meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(245, 242, 235, 0.2); }
.project-hero__meta-item .lbl { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,242,235,0.6); margin-bottom: 6px; font-weight: 700; }
.project-hero__meta-item .val { font-family: var(--ni-font-display); font-size: 22px; font-weight: 700; color: var(--ni-gold); }

.project-quickstats { background: var(--ni-paper); padding: 32px; border: 1px solid var(--ni-stone); }
.project-quickstats__price { font-family: var(--ni-font-display); font-size: 48px; font-weight: 700; color: var(--ni-navy-700); line-height: 1; }
.project-quickstats__price-lbl { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ni-graphite); margin-top: 4px; }
.project-quickstats__divider { width: 60px; height: 1px; background: var(--ni-gold); margin: 24px 0; }
.project-quickstats__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed rgba(10,21,48,0.1); font-size: 13px; }
.project-quickstats__row:last-of-type { border-bottom: none; }
.project-quickstats__row .k { color: var(--ni-graphite); }
.project-quickstats__row .v { font-weight: 600; color: var(--ni-navy-900); }
.project-quickstats__cta { margin-top: 24px; width: 100%; }

.project-body { display: grid; gap: 60px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .project-body { grid-template-columns: 1fr 380px; gap: 80px; } }
.project-body__main { font-size: 17px; line-height: 1.8; color: var(--ni-graphite); }
.project-body__main h2 { margin: 2em 0 0.6em; }
.project-body__main h2:first-child { margin-top: 0; }
.project-body__main h3 { margin: 1.8em 0 0.5em; font-family: var(--ni-font-display); font-size: 24px; }
.project-body__main p { margin-bottom: 1.2em; }
.project-body__main ul { padding-inline-start: 20px; margin: 1em 0 1.5em; }
.project-body__main ul li { list-style: disc; margin-bottom: 0.6em; }
.project-body__aside .project-quickstats { position: sticky; top: 120px; }

.form-card { background: var(--ni-cream); padding: 32px; border: 1px solid var(--ni-stone); }
.form-card h3 { font-family: var(--ni-font-display); font-size: 22px; margin-bottom: 20px; }
.form-field { margin-bottom: 18px; }
.form-field span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ni-graphite); }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; background: var(--ni-paper); border: 1px solid var(--ni-stone); font-family: inherit; font-size: 15px; color: var(--ni-ink); transition: border-color 200ms; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--ni-gold); }
.form-consent { font-size: 12px; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; margin-bottom: 18px; color: var(--ni-graphite); }
.form-consent a { color: var(--ni-gold-deep); text-decoration: underline; }
.form-msg { padding: 12px 16px; font-size: 14px; margin-top: 12px; display: none; }
.form-msg.is-success { display: block; background: rgba(31, 111, 74, 0.1); border-inline-start: 3px solid #1F6F4A; color: #1F6F4A; }

.disclaimer { font-size: 12px; color: rgba(10, 14, 26, 0.55); line-height: 1.7; max-width: 80ch; margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--ni-stone); }

.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--ni-stone); padding: 22px 0; }
.faq__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--ni-font-display); font-size: 19px; font-weight: 600; color: var(--ni-navy-900); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 24px; color: var(--ni-gold); transition: transform 300ms var(--ni-ease-out); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { margin-top: 14px; font-size: 15px; color: var(--ni-graphite); line-height: 1.7; }

/* ============================================================
   ===== 2026-06-19 UPDATES =====
   ============================================================ */

/* ----- Mobile navbar: hamburger + flag CTA adjacent on the LEFT, logo on RIGHT ----- */
@media (max-width: 1023px) {
    .navbar__inner {
        display: flex !important;
        align-items: center;
        gap: 10px;
        grid-template-columns: none !important;
    }
    .navbar__logo {
        order: 1;
        margin-inline-end: auto; /* push everything else to opposite (left) end in RTL */
    }
    .navbar__left {
        order: 2;
        display: flex !important;
        align-items: center;
        gap: 0 !important;
        flex: 0 0 auto !important;
        justify-self: auto !important;
        grid-column: auto !important;
    }
    .navbar__hamburger { order: 3; }
    /* Show ONLY the flag CTA next to hamburger; hide "קביעת פגישה" */
    .navbar__flag-cta {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        background: rgba(201,169,97,0.10);
        border: 1px solid rgba(201,169,97,0.4);
        color: var(--ni-cream);
        text-decoration: none;
        white-space: nowrap;
    }
    .navbar__cta { display: none !important; }
    .navbar__flag-pulse {
        display: inline-block;
        width: 7px; height: 7px;
        border-radius: 50%;
        background: var(--ni-gold);
        animation: flag-pulse 2s ease-out infinite;
        flex-shrink: 0;
    }
    .navbar__flag-label { display: none; } /* hide "פרויקט הדגל" eyebrow on mobile */
    .navbar__flag-name {
        font-family: 'Frank Ruhl Libre', Georgia, serif;
        font-size: 13.5px;
        font-weight: 700;
        color: var(--ni-cream);
        line-height: 1;
        border-inline-start: 0; padding-inline-start: 0;
    }
    .navbar__flag-arrow { color: var(--ni-gold); font-size: 12px; line-height: 1; }
}
@media (max-width: 380px) {
    .navbar__flag-cta { padding: 6px 10px !important; gap: 6px !important; }
    .navbar__flag-name { font-size: 12.5px !important; }
    .navbar__flag-arrow { display: none; }
}

/* ----- Navbar: balanced 3-column grid, centered menu, no wrap (desktop) ----- */
@media (min-width: 1024px) {
    .navbar__left { display: flex; }
    .navbar__inner {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 24px !important;
    }
    .navbar__logo { justify-self: start; grid-column: 1; }
    .navbar__menu {
        display: flex !important;
        gap: 24px !important;
        justify-content: center;
        position: static !important;
        transform: none !important;
        inset-inline-start: auto !important;
        flex: none !important;
        grid-column: 2;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    /* Left cell: flag CTA + "דברו איתנו" button side-by-side */
    .navbar__left {
        grid-column: 3;
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .navbar__flag-cta { justify-self: end; }
    .navbar__cta { display: inline-flex !important; }
}
@media (min-width: 1024px) {
    .navbar__link {
        white-space: nowrap !important;
        font-size: 13.5px !important;
    }
    .navbar__cta {
        white-space: nowrap;
        padding: 11px 22px !important;
        font-size: 12.5px !important;
    }
}

/* Tighter at narrower desktops so nothing wraps */
@media (min-width: 1024px) and (max-width: 1480px) {
    .navbar__menu { gap: 16px !important; }
    .navbar__link { font-size: 12.5px !important; letter-spacing: 0.2px !important; }
    .navbar__flag-cta { padding: 8px 12px; gap: 7px; }
    .navbar__flag-name { font-size: 13.5px; padding-inline-start: 8px; }
    .navbar__flag-label { font-size: 9.5px; letter-spacing: 1.5px; }
    .navbar__cta { padding: 9px 16px !important; font-size: 11.5px !important; }
    .navbar__left { gap: 10px; }
}
@media (min-width: 1024px) and (max-width: 1280px) {
    /* Drop two lower-priority items rather than wrapping */
    .navbar__menu li:nth-child(8), /* בלוג */
    .navbar__menu li:nth-child(7)  /* תהליך */
        { display: none; }
}

/* ----- Fix hover on ghost-on-dark button (text was disappearing) ----- */
.btn--ghost-on-dark:hover {
    background: var(--ni-gold, #C9A961) !important;
    color: var(--ni-navy-900, #0A1530) !important;
    border-color: var(--ni-gold, #C9A961) !important;
}

/* ----- Sold cards: enforce identical aspect ratio + uniform object-fit ----- */
.sold-grid { align-items: stretch; }
.sold-card { display: flex; flex-direction: column; height: 100%; }
.sold-card__img {
    width: 100%;
    aspect-ratio: 16/10 !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: var(--ni-stone, #E5E0D5);
    flex-shrink: 0;
}
.sold-card__body { flex: 1; }

/* ----- Footer bottom: center everything, drop "צור קשר" ----- */
.footer__bottom {
    justify-content: center !important;
    text-align: center;
    flex-direction: column;
    gap: 10px;
}
.footer__bottom-links { display: none !important; }

/* ----- Floating phone CTA — MOBILE-FIRST (base: visible, RIGHT bottom) ----- */
.phone-floater {
    display: inline-flex;
    position: fixed;
    bottom: 24px;
    inset-inline-end: 24px;
    inset-inline-start: auto;
    width: 56px; height: 56px;
    background: var(--ni-gold-gradient, linear-gradient(135deg,#C9A961,#E8D49B,#B89248));
    color: var(--ni-navy-900, #0A1530);
    border: 0;
    border-radius: 50%;
    align-items: center; justify-content: center;
    box-shadow: 0 16px 40px rgba(10,21,48,0.4), 0 0 0 0 rgba(201,169,97,0.55);
    z-index: 90;
    text-decoration: none;
    animation: phone-pulse 2.4s ease-out infinite;
}
.phone-floater svg { width: 24px; height: 24px; }
.phone-floater:active { transform: scale(0.95); }
/* Hide phone floater at md+ (tablet/desktop have nav phone + topbar phone) */
@media (min-width: 768px) {
    .phone-floater { display: none; }
}
/* WhatsApp floater: stack ABOVE phone floater on the right (same side) */
.wa-floater {
    inset-inline-end: 24px !important;
    inset-inline-start: auto !important;
    bottom: 92px;  /* 24 (gap from bottom) + 56 (phone) + 12 (gap between) */
}
@media (min-width: 768px) {
    /* Desktop: phone is hidden, so WA sits at the original bottom position */
    .wa-floater { bottom: 24px; }
}
@keyframes phone-pulse {
    0%   { box-shadow: 0 16px 40px rgba(10,21,48,0.4), 0 0 0 0 rgba(201,169,97,0.55); }
    70%  { box-shadow: 0 16px 40px rgba(10,21,48,0.4), 0 0 0 16px rgba(201,169,97,0); }
    100% { box-shadow: 0 16px 40px rgba(10,21,48,0.4), 0 0 0 0 rgba(201,169,97,0); }
}


/* ----- Flag CTA: a separate, distinctive element next to the menu ----- */
.navbar__flag-cta {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(201,169,97,0.08);
    border: 1px solid rgba(201,169,97,0.5);
    color: var(--ni-cream);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}
@media (min-width: 1024px) {
    .navbar__flag-cta { display: inline-flex; }
}
.navbar__flag-cta:hover {
    background: rgba(201,169,97,0.18);
    border-color: var(--ni-gold);
    transform: translateY(-1px);
    color: var(--ni-cream);
}
.navbar__flag-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ni-gold);
    box-shadow: 0 0 0 0 rgba(201,169,97,0.7);
    animation: flag-pulse 2s ease-out infinite;
    flex-shrink: 0;
}
@keyframes flag-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,169,97,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(201,169,97,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}
.navbar__flag-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ni-gold);
    line-height: 1;
}
.navbar__flag-name {
    font-family: var(--ni-font-display, 'Frank Ruhl Libre', Georgia, serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: var(--ni-cream);
    border-inline-start: 1px solid rgba(201,169,97,0.35);
    padding-inline-start: 10px;
}
.navbar__flag-arrow {
    color: var(--ni-gold);
    font-size: 14px;
    line-height: 1;
    transition: transform 240ms ease;
}
.navbar__flag-cta:hover .navbar__flag-arrow { transform: translateX(4px); }

/* Tighter at narrower desktops so nothing wraps */
@media (min-width: 1024px) and (max-width: 1380px) {
    .navbar__menu { gap: 16px !important; }
    .navbar__link { font-size: 13px !important; letter-spacing: 0.3px !important; }
    .navbar__flag-name { font-size: 14px; padding-inline-start: 8px; }
    .navbar__flag-cta { padding: 9px 14px; gap: 8px; }
    .navbar__cta { padding: 10px 18px !important; font-size: 12px !important; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
    /* Drop a couple of low-priority items rather than wrapping */
    .navbar__menu li:nth-child(8), /* בלוג */
    .navbar__menu li:nth-child(7)  /* תהליך */
        { display: none; }
}

/* ----- Hero: Cinematic + Centered + Video — MOBILE-FIRST ----- */
.hero--cinematic {
    position: relative;
    min-height: auto;
    padding-block: clamp(100px, 22vw, 160px) clamp(40px, 10vw, 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--ni-cream);
}
@media (min-width: 768px) {
    .hero--cinematic {
        min-height: 92vh;
        padding-block: 0;
    }
}
.hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--ni-navy-900);
}
.hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero--cinematic .hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(10,21,48,0.55) 0%, rgba(10,21,48,0.85) 100%),
        linear-gradient(180deg, rgba(10,21,48,0.55) 0%, rgba(10,21,48,0.75) 100%);
}
.hero__inner--centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    margin-inline: auto;
    padding-block: clamp(20px, 6vw, 80px) clamp(20px, 6vw, 48px);
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
}
@media (min-width: 768px) {
    .hero__inner--centered { padding-block: 100px 64px; }
}
.hero--cinematic .hero__title { text-align: center; margin: 0 auto; }
.hero--cinematic .hero__sub,
.hero--cinematic .hero__actions,
.hero--cinematic .hero__features { text-align: center; margin-inline: auto; }
.hero--cinematic .hero__features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px 24px;
    justify-items: center;
    text-align: center;
    max-width: 380px;
    margin-inline: auto;
}
@media (min-width: 768px) {
    .hero--cinematic .hero__features {
        display: flex !important;
        flex-wrap: nowrap;
        grid-template-columns: none !important;
        gap: 32px;
        max-width: none;
        justify-content: center;
    }
}
.hero--cinematic .hero__actions {
    display: flex !important;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.hero--cinematic .eyebrow { justify-content: center; display: inline-flex; }
.hero--cinematic { padding-top: 0 !important; padding-bottom: 0 !important; }
.eyebrow--on-dark { color: var(--ni-gold-light, #E8D49B) !important; }
.hero__title--on-dark { color: var(--ni-cream) !important; }
.hero__title--on-dark em {
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__sub--on-dark { color: rgba(245,242,235,0.85); max-width: 640px; margin-inline: auto; }
.hero__actions--center { justify-content: center; }
.btn--ghost-on-dark {
    color: var(--ni-cream) !important;
    border-color: rgba(245,242,235,0.4) !important;
}
.btn--ghost-on-dark:hover {
    border-color: var(--ni-gold) !important;
    color: var(--ni-gold-light, #E8D49B) !important;
}
.hero__slogan {
    font-family: 'Frank Ruhl Libre', Georgia, var(--ni-font-display, serif);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.55;
    color: rgba(245,242,235,0.92);
    max-width: 620px;
    margin: 20px auto 28px;
}
.hero__slogan em {
    font-style: italic;
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}
.hero__features--on-dark {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,169,97,0.25);
    justify-content: center;
}
.hero__features--on-dark .hero__feature .n {
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__features--on-dark .hero__feature .lbl { color: rgba(245,242,235,0.7); }

/* ----- Flag card (Metro Park wide) — MOBILE-FIRST ----- */
.flag-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 24px 0 36px;
    background: var(--ni-navy-800, #0F1B3A);
    border: 1px solid rgba(201,169,97,0.4);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms;
}
@media (min-width: 768px) {
    .flag-card {
        grid-template-columns: 1.3fr 1fr;
        margin: 32px 0 48px;
    }
}
.flag-card:hover {
    transform: translateY(-3px);
    border-color: var(--ni-gold);
}
.flag-card__badge {
    position: absolute; top: 16px; inset-inline-end: 16px;
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    color: #0A1530;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}
.flag-card__media {
    aspect-ratio: 16/10;
    background-color: var(--ni-navy-700);
    position: relative;
}
@media (min-width: 768px) {
    .flag-card__media {
        aspect-ratio: auto;
        min-height: 360px;
    }
}
.flag-card__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(15,27,58,0.4) 100%);
}
.flag-card__body {
    padding: clamp(20px, 5vw, 40px) clamp(18px, 5vw, 36px);
    display: flex; flex-direction: column; justify-content: center;
    color: var(--ni-cream);
}
.flag-card__eyebrow {
    color: var(--ni-gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}
.flag-card__title {
    font-family: 'Frank Ruhl Libre', Georgia, var(--ni-font-display, serif);
    font-size: clamp(22px, 6vw, 42px);
    font-weight: 700;
    color: var(--ni-cream);
    margin: 0 0 12px;
    line-height: 1.15;
}
.flag-card__sub {
    color: rgba(245,242,235,0.78);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.flag-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}
.flag-card__feature {
    font-size: 13px;
    color: var(--ni-gold-light, #E8D49B);
    font-weight: 600;
}
.flag-card__cta { align-self: flex-start; }

/* ----- Sold strip (3 sold projects under flag) ----- */
.sold-strip {
    margin-top: 28px;
    padding-top: 36px;
    border-top: 1px solid var(--ni-stone, #E5DDC8);
}
.sold-strip__title {
    text-align: center;
    color: var(--ni-graphite, #555);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 0 24px;
}
.sold-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .sold-grid { grid-template-columns: repeat(3, 1fr); }
}
.sold-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ni-stone, #E5DDC8);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms;
}
.sold-card:hover {
    transform: translateY(-2px);
    border-color: var(--ni-gold);
}
.sold-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--ni-stone, #E5DDC8);
    filter: grayscale(0.4) brightness(0.85);
    transition: filter 220ms ease;
}
.sold-card:hover .sold-card__img { filter: none; }
.sold-card__badge {
    position: absolute; top: 12px; inset-inline-start: 12px;
    background: rgba(220,38,38,0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 10px;
    text-transform: uppercase;
    z-index: 2;
}
.sold-card__body { padding: 20px 22px 24px; }
.sold-card__region {
    color: var(--ni-gold-dark, #B89248);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.sold-card__title {
    font-family: 'Frank Ruhl Libre', Georgia, var(--ni-font-display, serif);
    font-size: clamp(18px, 5vw, 22px);
    color: var(--ni-navy-900, #0A1530);
    margin: 0 0 6px;
    font-weight: 700;
}
.sold-card__sub {
    color: var(--ni-graphite, #555);
    font-size: 13px;
    margin: 0;
}

/* ----- Track cards (services 3 tiers) — MOBILE-FIRST ----- */
.tracks-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 32px;
}
@media (min-width: 768px) {
    .tracks-grid { gap: 24px; margin-top: 40px; }
}
@media (min-width: 1024px) {
    .tracks-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.track-card {
    position: relative;
    padding: clamp(20px, 5vw, 32px) clamp(18px, 5vw, 28px);
    background: #fff;
    border: 1px solid var(--ni-stone, #E5DDC8);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}
@media (min-width: 768px) {
    .track-card { gap: 20px; }
}
.track-card:hover {
    border-color: var(--ni-gold);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -18px rgba(10,21,48,0.18);
}
.track-card--recommended {
    border-width: 2px;
    border-color: var(--ni-gold);
    background: linear-gradient(180deg, rgba(232,212,155,0.10) 0%, #fff 35%);
    box-shadow: 0 20px 50px -16px rgba(201,169,97,0.35);
}
@media (min-width: 1024px) {
    .track-card--recommended { transform: translateY(-8px); }
    .track-card--recommended:hover { transform: translateY(-10px); }
}
.track-card__badge {
    position: absolute; top: -14px; inset-inline-end: 20px;
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    color: #0A1530;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 7px 14px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(201,169,97,0.4);
}
.track-card__index {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ni-gold-dark, #B89248);
    font-weight: 700;
}
.track-card__title {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(20px, 5.5vw, 26px);
    font-weight: 700;
    color: var(--ni-navy-900);
    margin: 0;
    line-height: 1.2;
}
.track-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: rgba(10,21,48,0.04);
    border: 1px solid rgba(201,169,97,0.22);
}
.track-card__meta > div { display: flex; flex-direction: column; gap: 4px; }
.track-card__meta-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ni-graphite);
    font-weight: 700;
}
.track-card__meta-value {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-weight: 700;
    color: var(--ni-navy-900);
    font-size: 19px;
}
.track-card__meta-value--price { color: var(--ni-gold-dark, #B89248); }
.track-card__section h3 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ni-gold-dark);
    margin: 0 0 6px;
    font-weight: 800;
}
.track-card__section p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ni-navy-800);
    margin: 0;
}
.track-card .btn { margin-top: auto; align-self: flex-start; }

/* ----- Bio cards (law office) ----- */
.bio-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 40px;
}
@media (min-width: 800px) {
    .bio-grid { grid-template-columns: 1fr 1fr; }
}
.bio-card {
    background: var(--ni-navy-800, #0F1B3A);
    border: 1px solid rgba(201,169,97,0.3);
    padding: 32px 28px;
    color: var(--ni-cream);
}
.bio-card__avatar {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    color: var(--ni-navy-900);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 18px;
}
.bio-card__name {
    color: var(--ni-gold-light, #E8D49B);
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 26px;
    margin: 0 0 6px;
}
.bio-card__role {
    color: var(--ni-gold);
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 18px;
}
.bio-card__body p {
    color: rgba(245,242,235,0.85);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px;
}
.bio-card__body strong { color: var(--ni-gold-light, #E8D49B); font-weight: 600; }

/* ----- Feature cards (chul regions / law office services) ----- */
.feature-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 32px;
}
@media (min-width: 700px) {
    .feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--ni-stone);
}
.feature-card h3 {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: 21px;
    color: var(--ni-navy-900);
    margin: 0 0 10px;
}
.feature-card p { font-size: 15px; line-height: 1.65; margin: 0; color: var(--ni-navy-800); }
.feature-card--dark {
    background: var(--ni-navy-800, #0F1B3A);
    border-color: rgba(201,169,97,0.28);
}
.feature-card--dark h3 { color: var(--ni-gold-light, #E8D49B); }
.feature-card--dark p { color: rgba(245,242,235,0.85); }

/* ----- Compare slider — LP look ----- */
.compare { margin: 24px 0; }
.compare__caption-hint {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    padding-inline: 16px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--ni-graphite, #2A2F3A);
    letter-spacing: 0.3px;
    text-align: center;
}
@media (min-width: 768px) {
    .compare__caption-hint { gap: 10px; margin-bottom: 16px; font-size: 14px; }
}
.compare__caption-hint strong {
    color: var(--ni-navy-900, #0A1530);
    font-weight: 700;
}
.compare__hint-arrow {
    display: inline-block;
    color: var(--ni-gold-deep, #B89248);
    font-size: 22px;
    line-height: 1;
    animation: cmpNudge 1.6s ease-in-out infinite;
}
.compare__hint-arrow:last-child { animation-delay: 0.4s; }
@keyframes cmpNudge {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(-4px); opacity: 1; }
}
.compare__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--ni-stone);
    background: var(--ni-cream);
    user-select: none;
    -webkit-user-select: none;
    cursor: ew-resize;
    touch-action: pan-y;
}
@media (min-width: 768px) {
    .compare__frame { aspect-ratio: 4/3; }
}
.compare__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}
.compare__img--base { position: absolute; inset: 0; z-index: 1; }
.compare__after {
    position: absolute; inset: 0; z-index: 2;
    width: 50%;
    overflow: hidden;
}
.compare__after .compare__img {
    width: var(--frame-width, 200%);
    max-width: none;
    position: absolute;
    inset: 0 0 0 auto;
    right: 0;
}
.compare__tag {
    position: absolute;
    top: 10px;
    z-index: 4;
    background: var(--ni-navy-900);
    color: var(--ni-cream);
    padding: 5px 8px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    pointer-events: none;
}
.compare__tag--before { inset-inline-end: 10px; }
.compare__tag--after {
    inset-inline-start: 10px;
    background: var(--ni-gold);
    color: var(--ni-navy-900);
}
@media (min-width: 768px) {
    .compare__tag { top: 16px; padding: 7px 12px; font-size: 11px; letter-spacing: 2px; }
    .compare__tag--before { inset-inline-end: 16px; }
    .compare__tag--after  { inset-inline-start: 16px; }
}
.compare__handle {
    position: absolute;
    top: 0; bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 56px;
    z-index: 5;
    background: transparent;
    border: 0; padding: 0; margin: 0;
    cursor: ew-resize;
    touch-action: none;
}
.compare__handle::before {
    content: '';
    position: absolute; top: 0; bottom: 0;
    left: 50%; transform: translateX(-50%);
    width: 2px;
    background: rgba(245,242,235,0.9);
    pointer-events: none;
}
.compare__handle-knob {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ni-gold);
    color: var(--ni-navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: transform 200ms ease;
}
.compare__handle-knob svg { width: 18px; height: 18px; }
@media (min-width: 768px) {
    .compare__handle-knob { width: 52px; height: 52px; }
    .compare__handle-knob svg { width: 22px; height: 22px; }
}
.compare__frame:hover .compare__handle-knob { transform: translate(-50%, -50%) scale(1.08); }
.compare__caption {
    text-align: center;
    margin-top: 14px;
    color: var(--ni-navy-900);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}


/* ============================================================
   ===== 2026-06-19 EDITORIAL UPDATES =====
   ============================================================ */

/* ----- Page hero (editorial w/ background image + overlay) ----- */
.page-hero--editorial {
    position: relative;
    padding: clamp(130px, 30vw, 200px) 0 clamp(48px, 12vw, 90px);
    overflow: hidden;
    background: var(--ni-navy-900);
}
.page-hero--editorial .page-hero__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(0.2) brightness(0.55);
}
.page-hero--editorial .page-hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,21,48,0.55) 0%, rgba(10,21,48,0.85) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(201,169,97,0.18) 0%, transparent 60%);
    z-index: 1;
}
.page-hero--editorial > .container {
    position: relative; z-index: 2;
    max-width: 920px;
}
.page-hero__lead {
    color: rgba(245,242,235,0.85);
    font-size: clamp(15px, 4vw, 19px);
    line-height: 1.7;
    max-width: 720px;
    margin: 20px auto 0;
    padding-inline: 4px;
}
@media (min-width: 768px) {
    .page-hero__lead { margin-top: 28px; line-height: 1.75; }
}
.page-hero__lead strong { color: var(--ni-gold-light, #E8D49B); font-weight: 600; }

.page-hero--legal {
    padding: clamp(110px, 25vw, 180px) 0 clamp(40px, 10vw, 70px);
    background: linear-gradient(135deg, #0A1530 0%, #122347 100%);
}

/* ----- Editorial split layout (image + text, magazine style) — MOBILE-FIRST ----- */
.editorial {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: stretch;
}
@media (min-width: 768px) {
    .editorial { gap: 60px; }
}
@media (min-width: 1024px) {
    .editorial { grid-template-columns: 1fr 1.05fr; gap: 80px; }
}
.editorial__media {
    position: relative;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--ni-navy-700);
    overflow: hidden;
}
@media (min-width: 768px) {
    .editorial__media { aspect-ratio: 4/5; }
}
.editorial__media::before {
    content: '';
    position: absolute; inset: 22px;
    border: 1px solid rgba(201,169,97,0.55);
    pointer-events: none;
}
.editorial__media--reversed { order: 0; }
@media (min-width: 1024px) {
    .editorial__media--reversed { order: 2; }
}
.editorial__media-meta {
    position: absolute;
    bottom: clamp(16px, 5vw, 36px);
    inset-inline-end: clamp(16px, 5vw, 36px);
    background: var(--ni-cream, #F5F2EB);
    color: var(--ni-navy-900, #0A1530);
    padding: clamp(14px, 4vw, 24px) clamp(16px, 4vw, 28px);
    max-width: clamp(160px, 60%, 220px);
    box-shadow: 0 20px 50px rgba(10,21,48,0.35);
}
.editorial__media-meta .big {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(36px, 10vw, 56px);
    line-height: 1;
    font-weight: 700;
    color: var(--ni-gold-dark, #B89248);
}
.editorial__media-meta .lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ni-graphite, #2A2F3A);
    font-weight: 700;
    margin-top: 6px;
}
.editorial__text p { font-size: 14.5px; line-height: 1.75; color: var(--ni-graphite, #2A2F3A); margin: 0 0 16px; }
@media (min-width: 768px) {
    .editorial__text p { font-size: 15.5px; line-height: 1.85; margin-bottom: 18px; }
}
.editorial__text p strong { color: var(--ni-navy-900); font-weight: 600; }

/* ----- Bio editorial cards (magazine portrait + text) — MOBILE-FIRST ----- */
.bio-editorial {
    display: grid;
    gap: 48px;
    margin-top: 36px;
}
@media (min-width: 768px) {
    .bio-editorial { gap: 80px; margin-top: 50px; }
}
.bio-editorial__card {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 768px) {
    .bio-editorial__card { gap: 50px; }
}
@media (min-width: 1024px) {
    .bio-editorial__card { grid-template-columns: 320px 1fr; gap: 60px; }
    .bio-editorial__card--reversed { grid-template-columns: 1fr 320px; }
    .bio-editorial__card--reversed .bio-editorial__photo { order: 2; }
    .bio-editorial__card--reversed .bio-editorial__content { order: 1; }
}
@media (min-width: 1280px) {
    .bio-editorial__card { grid-template-columns: 380px 1fr; gap: 70px; }
    .bio-editorial__card--reversed { grid-template-columns: 1fr 380px; }
}
.bio-editorial__photo {
    position: relative;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--ni-navy-700);
    overflow: hidden;
}
.bio-editorial__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,21,48,0.1) 0%, rgba(10,21,48,0.55) 100%);
}
.bio-editorial__monogram {
    position: absolute;
    top: 24px; inset-inline-end: 24px;
    z-index: 2;
    background: linear-gradient(135deg, #C9A961, #E8D49B, #B89248);
    color: #0A1530;
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-weight: 700;
    font-size: 18px;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.bio-editorial__role {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ni-gold, #C9A961);
    font-weight: 800;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,97,0.35);
}
.bio-editorial__name {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(24px, 6.5vw, 44px);
    font-weight: 700;
    color: var(--ni-cream);
    margin: 0 0 18px;
    line-height: 1.15;
}
@media (min-width: 768px) {
    .bio-editorial__name { margin-bottom: 22px; line-height: 1.1; }
}
.bio-editorial__body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245,242,235,0.82);
    margin: 0 0 14px;
}
@media (min-width: 768px) {
    .bio-editorial__body { font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
}
.bio-editorial__body strong {
    color: var(--ni-gold-light, #E8D49B);
    font-weight: 600;
}

/* ----- Region cards (chul) — MOBILE-FIRST ----- */
.region-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 36px;
}
@media (min-width: 480px) {
    .region-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
    .region-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
}
.region-card {
    background: var(--ni-cream, #F5F2EB);
    border: 1px solid var(--ni-stone, #E5E0D5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 320ms cubic-bezier(0.22,1,0.36,1), border-color 320ms, box-shadow 320ms;
}
.region-card:hover {
    transform: translateY(-4px);
    border-color: var(--ni-gold, #C9A961);
    box-shadow: 0 20px 60px -20px rgba(10,21,48,0.25);
}
.region-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: var(--ni-stone);
    flex-shrink: 0;
}
.region-card__body {
    padding: clamp(20px, 5vw, 28px) clamp(20px, 5vw, 28px) clamp(22px, 5vw, 32px);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.region-card__index {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(26px, 7vw, 32px);
    font-weight: 700;
    color: var(--ni-gold-dark, #B89248);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}
.region-card__title {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(20px, 5.5vw, 26px);
    font-weight: 700;
    color: var(--ni-navy-900, #0A1530);
    margin: 0 0 6px;
    line-height: 1.15;
}
.region-card__sub {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ni-gold-dark, #B89248);
    font-weight: 700;
    margin: 0 0 18px;
}
.region-card__body-text {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--ni-graphite, #2A2F3A);
    margin: 0;
}

/* ----- Legal prose ----- */
.legal-prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--ni-graphite, #2A2F3A);
}
@media (min-width: 768px) {
    .legal-prose { font-size: 15.5px; line-height: 1.85; }
}
.legal-prose h1, .legal-prose h2, .legal-prose h3, .legal-prose h4 {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    color: var(--ni-navy-900);
    line-height: 1.25;
    margin-top: clamp(28px, 7vw, 40px);
    margin-bottom: 14px;
    font-weight: 700;
}
.legal-prose h1 { font-size: clamp(24px, 6.5vw, 30px); }
.legal-prose h2 { font-size: clamp(20px, 5.5vw, 24px); padding-top: 16px; border-top: 1px solid var(--ni-stone, #E5E0D5); }
.legal-prose h3 { font-size: clamp(18px, 4.8vw, 20px); color: var(--ni-gold-dark, #B89248); }
.legal-prose h4 { font-size: clamp(15px, 4.2vw, 17px); }
.legal-prose p { margin: 0 0 16px; }
.legal-prose strong { color: var(--ni-navy-900); font-weight: 700; }
.legal-prose a {
    color: var(--ni-gold-dark, #B89248);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
.legal-prose a:hover { color: var(--ni-gold); }
.legal-prose ul, .legal-prose ol {
    margin: 0 0 20px;
    padding-inline-start: 24px;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose hr {
    border: 0;
    border-top: 1px solid var(--ni-stone, #E5E0D5);
    margin: 36px 0;
}
.legal-prose blockquote {
    border-inline-start: 3px solid var(--ni-gold);
    padding: 4px 20px;
    margin: 24px 0;
    color: var(--ni-graphite);
    font-style: italic;
}

/* ----- Sections head--center helper ----- */
.section-head--center { text-align: center; margin-bottom: 40px; }
.section-head--center .eyebrow { justify-content: center; display: inline-flex; }
.section-head--center .display-2 { margin-inline: auto; }


/* ============================================================
   ===== FINANCING SECTION (services 80% redesign) =====
   ============================================================ */
.financing { position: relative; overflow: hidden; }
.financing::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201,169,97,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(201,169,97,0.06) 0%, transparent 55%);
    pointer-events: none;
}
.financing > .container { position: relative; z-index: 1; }

.financing__head { text-align: center; max-width: 720px; margin: 0 auto; }
.financing__head .display-2 { margin: 0 auto; }
.financing__head .display-2 em {
    font-style: italic;
    font-weight: 400;
    background: var(--ni-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Big 80% focal point */
.financing__hero {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 980px;
    margin: clamp(40px, 8vw, 64px) auto 0;
    padding: clamp(28px, 6vw, 48px) clamp(20px, 5vw, 40px);
    background:
        linear-gradient(135deg, rgba(201,169,97,0.10), rgba(201,169,97,0.02)),
        rgba(10,21,48,0.45);
    border: 1px solid rgba(201,169,97,0.35);
    text-align: center;
}
@media (min-width: 768px) {
    .financing__hero {
        grid-template-columns: auto 1fr;
        gap: 48px;
        text-align: start;
    }
}
.financing__big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--ni-cream);
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    direction: ltr; /* keep "80%" rendered LTR */
}
.financing__big-prefix {
    font-family: var(--ni-font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ni-gold);
    margin-bottom: 8px;
    direction: rtl;
}
.financing__big-num {
    font-size: clamp(96px, 22vw, 180px);
    font-weight: 700;
    line-height: 0.9;
    background: linear-gradient(135deg, #E8D49B 0%, #C9A961 50%, #B89248 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-feature-settings: "lnum" 1, "tnum" 1;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
}
.financing__big-pct {
    font-size: 0.55em;
    margin-inline-start: 4px;
    background: linear-gradient(135deg, #E8D49B 0%, #C9A961 50%, #B89248 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.financing__big-suffix {
    font-family: var(--ni-font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,242,235,0.7);
    margin-top: 14px;
    direction: rtl;
}

.financing__lead {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.75;
    color: rgba(245,242,235,0.85);
    margin: 0;
    max-width: 56ch;
}
.financing__lead strong { color: var(--ni-gold-light); font-weight: 600; }

/* 3-step cards */
.financing__cards {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: clamp(36px, 7vw, 56px);
}
@media (min-width: 768px) {
    .financing__cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.financing-card {
    position: relative;
    padding: clamp(28px, 5vw, 40px) clamp(22px, 5vw, 32px) clamp(28px, 5vw, 36px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,97,0.22);
    transition: border-color 280ms ease, transform 280ms ease, background 280ms ease;
}
.financing-card:hover {
    border-color: var(--ni-gold);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.06);
}
.financing-card__step {
    position: absolute;
    top: clamp(16px, 4vw, 24px);
    inset-inline-end: clamp(16px, 4vw, 24px);
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 700;
    line-height: 1;
    color: rgba(201,169,97,0.25);
    letter-spacing: -0.02em;
    direction: ltr;
}
.financing-card__icon {
    width: 52px; height: 52px;
    border: 1px solid rgba(201,169,97,0.4);
    color: var(--ni-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.financing-card__icon svg { width: 24px; height: 24px; }
.financing-card__title {
    font-family: 'Frank Ruhl Libre', Georgia, serif;
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    color: var(--ni-cream);
    margin: 0 0 12px;
    line-height: 1.2;
}
.financing-card__body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245,242,235,0.78);
    margin: 0;
}

.financing__fineprint {
    margin-top: clamp(36px, 7vw, 56px);
    text-align: center;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(245,242,235,0.45);
    font-style: italic;
    max-width: 70ch;
    margin-inline: auto;
}
